SlideShare ist ein Scribd-Unternehmen logo
1 von 29
Downloaden Sie, um offline zu lesen
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Optional Type Specification in Erlang
Andreas Pauley – @apauley
Lambda Luminaries – @lambdaluminary

November 11, 2013

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Dynamic, but strong

example({}) ->
"empty tuple";
example(List) when is_list(List) ->
length(List);
example(_Else) ->
another_return_type.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Dynamic, but strong

3> 5 + "6".
** exception error: an error occurred when evaluating
an arithmetic expression
in operator +/2
called as 5 + "6"

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Yes and No :-/

The Haskell giants Simon Marlow and Philip Wadler spent
over a year developing a static type system for Erlang (circa
1997).

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Yes and No :-/

The Haskell giants Simon Marlow and Philip Wadler spent
over a year developing a static type system for Erlang (circa
1997).
Only a subset of the language could be type-checked.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Yes and No :-/

The Haskell giants Simon Marlow and Philip Wadler spent
over a year developing a static type system for Erlang (circa
1997).
Only a subset of the language could be type-checked.
Process types and inter-process messages could not be
type-checked.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Declaring Types

We can declare union/sum types and product types:
-type suit() :: spades | clubs | hearts | diamonds.
-type value() :: 1..10 | jack | queen | king.
-type card() :: {suit(), value()}.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Declaring Types

Types in record definitions:
-record(rsa_id_number, {birth_date
gender_digit
sequence_nr
citizen_digit
digit_a
checksum_digit

Andreas Pauley – @apauley

Types in Erlang

::
::
::
::
::
::

calendar:date(),
0..9,
0..999,
0 | 1,
0..9,
0..9}).
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Using Types

-spec suit(card()) -> suit().
suit({Suit, _}) -> Suit.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Using Types

-type gender() :: male | female.
-type rsa_id_number() :: #rsa_id_number{}.
-export_type([rsa_id_number/0]).
-spec gender(rsa_id_number()) -> gender().
gender(#rsa_id_number{gender_digit=GenderDigit})
when GenderDigit >= 5 -> male;
gender(#rsa_id_number{gender_digit=GenderDigit})
when GenderDigit < 5 -> female.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A static analysis tool developed by Kostis Sagonas from the
University of Uppsala in Sweden.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A static analysis tool developed by Kostis Sagonas from the
University of Uppsala in Sweden.
Type inference based on Success Typing instead of
Hindley-Milner.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A static analysis tool developed by Kostis Sagonas from the
University of Uppsala in Sweden.
Type inference based on Success Typing instead of
Hindley-Milner.
Doesn’t need type specifications, but you get more useful
results if you provide them.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Dialyzer and Types

-type suit() :: spades | clubs | hearts | diamonds.
-type value() :: 1..10 | jack | queen | king.
-type card() :: {suit(), value()}.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Dialyzer and Types

-spec kind(card()) -> face | number.
kind({_, A}) when A >= 1, A =< 10 -> number;
kind(_) -> face.
main() ->
number
face
number
face

=
=
=
=

kind({spades, 7}),
kind({hearts, king}),
kind({rubies, 4}),
kind({clubs, queen}).

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Dialyzer and Types

Checking whether the PLT .deps_plt is up-to-date... yes
Proceeding with analysis...
src/cards.erl:15: Function main/0 has no local return
src/cards.erl:18: The call cards:kind({’rubies’,4})
breaks the contract (card()) -> ’face’ | ’number’
done in 0m0.54s
done (warnings were emitted)
make: *** [dialyzer] Error 2

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A QuickCheck-inspired property-based testing tool for Erlang.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A QuickCheck-inspired property-based testing tool for Erlang.
Developed by Manolis Papadakis, Eirini Arvaniti and Kostis
Sagonas from the National Technical University of Athens.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Discrepency Analyzer for Erlang

A QuickCheck-inspired property-based testing tool for Erlang.
Developed by Manolis Papadakis, Eirini Arvaniti and Kostis
Sagonas from the National Technical University of Athens.
Has the ability to generate random tests based on type specs.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Property tests from the specs

2> proper:check_specs(rsa_id_number).
Testing rsa_id_number:checksum/1
...........................................................
OK: Passed 100 test(s).

Testing rsa_id_number:citizen/1
...........................................................
OK: Passed 100 test(s).

Testing rsa_id_number:gender/1
...........................................................
OK: Passed 100 test(s).
Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Table of Contents
1

Erlang Type Overview

2

Can we add compile-time types to Erlang?

3

Optional Types

4

Dialyzer

5

Proper

6

Conclusion

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Conclusion

On its own, type declarations is maybe just a way to comment
your code.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Conclusion

On its own, type declarations is maybe just a way to comment
your code.
With the extra tool support and some effort we’re getting a lot
of benefit typically only found in statically typed languages.

Andreas Pauley – @apauley

Types in Erlang
Erlang Type Overview
Can we add compile-time types to Erlang?
Optional Types
Dialyzer
Proper
Conclusion

Conclusion

On its own, type declarations is maybe just a way to comment
your code.
With the extra tool support and some effort we’re getting a lot
of benefit typically only found in statically typed languages.
It’s far from perfect.

Andreas Pauley – @apauley

Types in Erlang

Weitere ähnliche Inhalte

Kürzlich hochgeladen

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticscarlostorres15106
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxNavinnSomaal
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brandgvaughan
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxhariprasad279825
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsMiki Katsuragi
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfSeasiaInfotech2
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embeddingZilliz
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clashcharlottematthew16
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Wonjun Hwang
 

Kürzlich hochgeladen (20)

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmaticsKotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
Kotlin Multiplatform & Compose Multiplatform - Starter kit for pragmatics
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
SAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptxSAP Build Work Zone - Overview L2-L3.pptx
SAP Build Work Zone - Overview L2-L3.pptx
 
WordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your BrandWordPress Websites for Engineers: Elevate Your Brand
WordPress Websites for Engineers: Elevate Your Brand
 
Artificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptxArtificial intelligence in cctv survelliance.pptx
Artificial intelligence in cctv survelliance.pptx
 
Vertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering TipsVertex AI Gemini Prompt Engineering Tips
Vertex AI Gemini Prompt Engineering Tips
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
The Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdfThe Future of Software Development - Devin AI Innovative Approach.pdf
The Future of Software Development - Devin AI Innovative Approach.pdf
 
Training state-of-the-art general text embedding
Training state-of-the-art general text embeddingTraining state-of-the-art general text embedding
Training state-of-the-art general text embedding
 
Powerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time ClashPowerpoint exploring the locations used in television show Time Clash
Powerpoint exploring the locations used in television show Time Clash
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
Bun (KitWorks Team Study 노별마루 발표 2024.4.22)
 

Empfohlen

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by HubspotMarius Sescu
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTExpeed Software
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsPixeldarts
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthThinkNow
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfmarketingartwork
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024Neil Kimberley
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)contently
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024Albert Qian
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsKurio // The Social Media Age(ncy)
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Search Engine Journal
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summarySpeakerHub
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next Tessa Mero
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentLily Ray
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best PracticesVit Horky
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project managementMindGenius
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...RachelPearson36
 

Empfohlen (20)

2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot2024 State of Marketing Report – by Hubspot
2024 State of Marketing Report – by Hubspot
 
Everything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPTEverything You Need To Know About ChatGPT
Everything You Need To Know About ChatGPT
 
Product Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage EngineeringsProduct Design Trends in 2024 | Teenage Engineerings
Product Design Trends in 2024 | Teenage Engineerings
 
How Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental HealthHow Race, Age and Gender Shape Attitudes Towards Mental Health
How Race, Age and Gender Shape Attitudes Towards Mental Health
 
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdfAI Trends in Creative Operations 2024 by Artwork Flow.pdf
AI Trends in Creative Operations 2024 by Artwork Flow.pdf
 
Skeleton Culture Code
Skeleton Culture CodeSkeleton Culture Code
Skeleton Culture Code
 
PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024PEPSICO Presentation to CAGNY Conference Feb 2024
PEPSICO Presentation to CAGNY Conference Feb 2024
 
Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)Content Methodology: A Best Practices Report (Webinar)
Content Methodology: A Best Practices Report (Webinar)
 
How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024How to Prepare For a Successful Job Search for 2024
How to Prepare For a Successful Job Search for 2024
 
Social Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie InsightsSocial Media Marketing Trends 2024 // The Global Indie Insights
Social Media Marketing Trends 2024 // The Global Indie Insights
 
Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024Trends In Paid Search: Navigating The Digital Landscape In 2024
Trends In Paid Search: Navigating The Digital Landscape In 2024
 
5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary5 Public speaking tips from TED - Visualized summary
5 Public speaking tips from TED - Visualized summary
 
ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd ChatGPT and the Future of Work - Clark Boyd
ChatGPT and the Future of Work - Clark Boyd
 
Getting into the tech field. what next
Getting into the tech field. what next Getting into the tech field. what next
Getting into the tech field. what next
 
Google's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search IntentGoogle's Just Not That Into You: Understanding Core Updates & Search Intent
Google's Just Not That Into You: Understanding Core Updates & Search Intent
 
How to have difficult conversations
How to have difficult conversations How to have difficult conversations
How to have difficult conversations
 
Introduction to Data Science
Introduction to Data ScienceIntroduction to Data Science
Introduction to Data Science
 
Time Management & Productivity - Best Practices
Time Management & Productivity -  Best PracticesTime Management & Productivity -  Best Practices
Time Management & Productivity - Best Practices
 
The six step guide to practical project management
The six step guide to practical project managementThe six step guide to practical project management
The six step guide to practical project management
 
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
Beginners Guide to TikTok for Search - Rachel Pearson - We are Tilt __ Bright...
 

Optional Type Specification in Erlang

  • 1. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Optional Type Specification in Erlang Andreas Pauley – @apauley Lambda Luminaries – @lambdaluminary November 11, 2013 Andreas Pauley – @apauley Types in Erlang
  • 2. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 3. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Dynamic, but strong example({}) -> "empty tuple"; example(List) when is_list(List) -> length(List); example(_Else) -> another_return_type. Andreas Pauley – @apauley Types in Erlang
  • 4. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Dynamic, but strong 3> 5 + "6". ** exception error: an error occurred when evaluating an arithmetic expression in operator +/2 called as 5 + "6" Andreas Pauley – @apauley Types in Erlang
  • 5. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 6. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Yes and No :-/ The Haskell giants Simon Marlow and Philip Wadler spent over a year developing a static type system for Erlang (circa 1997). Andreas Pauley – @apauley Types in Erlang
  • 7. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Yes and No :-/ The Haskell giants Simon Marlow and Philip Wadler spent over a year developing a static type system for Erlang (circa 1997). Only a subset of the language could be type-checked. Andreas Pauley – @apauley Types in Erlang
  • 8. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Yes and No :-/ The Haskell giants Simon Marlow and Philip Wadler spent over a year developing a static type system for Erlang (circa 1997). Only a subset of the language could be type-checked. Process types and inter-process messages could not be type-checked. Andreas Pauley – @apauley Types in Erlang
  • 9. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 10. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Declaring Types We can declare union/sum types and product types: -type suit() :: spades | clubs | hearts | diamonds. -type value() :: 1..10 | jack | queen | king. -type card() :: {suit(), value()}. Andreas Pauley – @apauley Types in Erlang
  • 11. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Declaring Types Types in record definitions: -record(rsa_id_number, {birth_date gender_digit sequence_nr citizen_digit digit_a checksum_digit Andreas Pauley – @apauley Types in Erlang :: :: :: :: :: :: calendar:date(), 0..9, 0..999, 0 | 1, 0..9, 0..9}).
  • 12. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Using Types -spec suit(card()) -> suit(). suit({Suit, _}) -> Suit. Andreas Pauley – @apauley Types in Erlang
  • 13. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Using Types -type gender() :: male | female. -type rsa_id_number() :: #rsa_id_number{}. -export_type([rsa_id_number/0]). -spec gender(rsa_id_number()) -> gender(). gender(#rsa_id_number{gender_digit=GenderDigit}) when GenderDigit >= 5 -> male; gender(#rsa_id_number{gender_digit=GenderDigit}) when GenderDigit < 5 -> female. Andreas Pauley – @apauley Types in Erlang
  • 14. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 15. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A static analysis tool developed by Kostis Sagonas from the University of Uppsala in Sweden. Andreas Pauley – @apauley Types in Erlang
  • 16. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A static analysis tool developed by Kostis Sagonas from the University of Uppsala in Sweden. Type inference based on Success Typing instead of Hindley-Milner. Andreas Pauley – @apauley Types in Erlang
  • 17. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A static analysis tool developed by Kostis Sagonas from the University of Uppsala in Sweden. Type inference based on Success Typing instead of Hindley-Milner. Doesn’t need type specifications, but you get more useful results if you provide them. Andreas Pauley – @apauley Types in Erlang
  • 18. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Dialyzer and Types -type suit() :: spades | clubs | hearts | diamonds. -type value() :: 1..10 | jack | queen | king. -type card() :: {suit(), value()}. Andreas Pauley – @apauley Types in Erlang
  • 19. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Dialyzer and Types -spec kind(card()) -> face | number. kind({_, A}) when A >= 1, A =< 10 -> number; kind(_) -> face. main() -> number face number face = = = = kind({spades, 7}), kind({hearts, king}), kind({rubies, 4}), kind({clubs, queen}). Andreas Pauley – @apauley Types in Erlang
  • 20. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Dialyzer and Types Checking whether the PLT .deps_plt is up-to-date... yes Proceeding with analysis... src/cards.erl:15: Function main/0 has no local return src/cards.erl:18: The call cards:kind({’rubies’,4}) breaks the contract (card()) -> ’face’ | ’number’ done in 0m0.54s done (warnings were emitted) make: *** [dialyzer] Error 2 Andreas Pauley – @apauley Types in Erlang
  • 21. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 22. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A QuickCheck-inspired property-based testing tool for Erlang. Andreas Pauley – @apauley Types in Erlang
  • 23. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A QuickCheck-inspired property-based testing tool for Erlang. Developed by Manolis Papadakis, Eirini Arvaniti and Kostis Sagonas from the National Technical University of Athens. Andreas Pauley – @apauley Types in Erlang
  • 24. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Discrepency Analyzer for Erlang A QuickCheck-inspired property-based testing tool for Erlang. Developed by Manolis Papadakis, Eirini Arvaniti and Kostis Sagonas from the National Technical University of Athens. Has the ability to generate random tests based on type specs. Andreas Pauley – @apauley Types in Erlang
  • 25. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Property tests from the specs 2> proper:check_specs(rsa_id_number). Testing rsa_id_number:checksum/1 ........................................................... OK: Passed 100 test(s). Testing rsa_id_number:citizen/1 ........................................................... OK: Passed 100 test(s). Testing rsa_id_number:gender/1 ........................................................... OK: Passed 100 test(s). Andreas Pauley – @apauley Types in Erlang
  • 26. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Table of Contents 1 Erlang Type Overview 2 Can we add compile-time types to Erlang? 3 Optional Types 4 Dialyzer 5 Proper 6 Conclusion Andreas Pauley – @apauley Types in Erlang
  • 27. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Conclusion On its own, type declarations is maybe just a way to comment your code. Andreas Pauley – @apauley Types in Erlang
  • 28. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Conclusion On its own, type declarations is maybe just a way to comment your code. With the extra tool support and some effort we’re getting a lot of benefit typically only found in statically typed languages. Andreas Pauley – @apauley Types in Erlang
  • 29. Erlang Type Overview Can we add compile-time types to Erlang? Optional Types Dialyzer Proper Conclusion Conclusion On its own, type declarations is maybe just a way to comment your code. With the extra tool support and some effort we’re getting a lot of benefit typically only found in statically typed languages. It’s far from perfect. Andreas Pauley – @apauley Types in Erlang