Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
F# 4.0 Design Patterns
F# 4.0 Design Patterns

F# 4.0 Design Patterns: Solve complex problems with functional thinking

eBook
₹799.99 ₹2919.99
Paperback
₹3649.99
Subscription
Free Trial
Renews at ₹800p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

F# 4.0 Design Patterns

Chapter 2. Dissecting F# Origins and Design

This chapter reviews F# features from the historical perspective tracking them back to origins where possible. The review covers:

  • F# evolvement timeline
  • Predecessor inherited language features
  • .NET imposed language features
  • Intrinsic F# language features

Although F# is a functional-first programming language, at the same time, you should not forget that it is a multi-paradigm tool that allows paradigms to be combined if required. Another important aspect you should keep in mind is that F# is designed for a .NET platform, so certain language facilities are shaped by underlying implementation mechanisms and interoperability requirements. The goal of this chapter is to dissect the language into components in a way that allows you to grasp the origins and the logic behind a contemporary F# design.

The evolvement of F#

Press began mentioning (http://developers.slashdot.org/story/02/06/08/0324233/f---a-new-net-language) the F# programming language in the Summer of 2002 as a research project at Microsoft Research Cambridge (http://research.microsoft.com/en-us/labs/cambridge/) aiming to create a dialect of OCaml language (https://ocaml.org/) running on top of the .NET platform. Computer scientist Don Syme (http://research.microsoft.com/en-us/people/dsyme/) was in charge of design and the first implementation.

Predecessors

The F# project of Microsoft Research Cambridge didn't come from scratch. F# belongs to ML (https://en.wikipedia.org/wiki/ML_(programming language)) programming language family. It predecessors are Standard ML (https://en.wikipedia.org/wiki/Standard_ML) and OCaml. Moreover, F# initially had a twin project at Microsoft Research Cambridge named SML.NET, which aimed at bringing Standard  ML (SML) to the .NET platform.

F# Version 1

The first release took place in...

Predecessor inherited language features

F# inherits the core of the features associated with its functional-first nature from ML and OCaml. This means that its chief fashion of expressing computations is via the definition and application of functions.

F# functions are first-class entities

The ability to define and apply functions is a common feature of many programming languages. However, F# follows ML and other functional programming languages in treating functions similarly to, say, numeric values. The ways of treating functions in F# go well beyond the limits usually associated with stored-program computer concept:

  • Functions can be used as arguments to other functions; the latter are higher-order functions in this case
  • Functions can be returned from other functions
  • Functions can be computed from other functions, for example, with the help of function composition operators
  • Functions can be elements of structures usually associated with data

Functions are free of side effects

Computations with...

.NET-imposed language features

Along with the features inherited from the language predecessors, the multitude of F# features was brought into the language for the sake of interoperability with the .NET platform.

F# adheres to .NET Common Language Infrastructure

Run-time arrangement for the F# code has been defined by .NET Common  Language  Infrastructure (CLI) and does not anyhow differ from the same of C# or VB.NET. F# compiler ingests F# source code file(s) and produces the intermediate code in assembly language named MSIL packaged as binary .NET assembly(ies). During code execution stage MSIL is converted into machine code as needed, or Just-in-time (JIT). Interoperability with other .NET languages is achieved as F#-produced assemblies do not anyhow differ from assemblies produced by C# or VB.NET. Similarly, the JIT compiler takes care of the target hardware platform providing portability. CLI also takes the burden of memory management on itself, making F# programs...

Intrinsic F# language features

Along with features inherited from F# predecessors, the F# language carries its own set of notable novel facilities. The outline of these facilities is discussed in the upcoming sections.

Indentation-aware syntax

Yes, this is correct; the F# compiler is sensitive to indentation in the source code (https://msdn.microsoft.com/en-us/library/dd233191.aspx), so correct code formatting is not just a matter of aesthetics. Why? Firstly, the improved code readability is enforced by the compiler, and secondly, this design choice dramatically decreases the amount of noise in the F# source code as block markers (such as curly brackets in C#) do not present, overall making the F# source code significantly shorter than the equivalent C# one.

Units of measure

This feature (https://msdn.microsoft.com/en-us/library/dd233243.aspx) allows you to decorate values with associated units and statically validate unit usage correctness by the compiler as well as infer units associated...

The evolvement of F#


Press began mentioning (http://developers.slashdot.org/story/02/06/08/0324233/f---a-new-net-language) the F# programming language in the Summer of 2002 as a research project at Microsoft Research Cambridge (http://research.microsoft.com/en-us/labs/cambridge/) aiming to create a dialect of OCaml language (https://ocaml.org/) running on top of the .NET platform. Computer scientist Don Syme (http://research.microsoft.com/en-us/people/dsyme/) was in charge of design and the first implementation.

Predecessors

The F# project of Microsoft Research Cambridge didn't come from scratch. F# belongs to ML (https://en.wikipedia.org/wiki/ML_(programming language)) programming language family. It predecessors are Standard ML (https://en.wikipedia.org/wiki/Standard_ML) and OCaml. Moreover, F# initially had a twin project at Microsoft Research Cambridge named SML.NET, which aimed at bringing Standard  ML (SML) to the .NET platform.

F# Version 1

The first release took place in December of...

Left arrow icon Right arrow icon

Key benefits

  • This book provides a path if you are coming from imperative and object-oriented paradigms
  • It will take you to an intermediate level of functional programming in very practical manner to write enterprise-quality idiomatic F# code
  • Tackle complex computing problems with simple code by fully embracing the functional-first F# paradigm
  • Packed full of practical coding examples to help you master F# programming and author optimal code

Description

Following design patterns is a well-known approach to writing better programs that captures and reuses high-level abstractions that are common in many applications. This book will encourage you to develop an idiomatic F# coding skillset by fully embracing the functional-first F# paradigm. It will also help you harness this powerful instrument to write succinct, bug-free, and cross-platform code. F# 4.0 Design Patterns will start off by helping you develop a functional way of thinking. We will show you how beneficial the functional-first paradigm is and how to use it to get the optimum results. The book will help you acquire the practical knowledge of the main functional design patterns, the relationship of which with the traditional Gang of Four set is not straightforward. We will take you through pattern matching, immutable data types, and sequences in F#. We will also uncover advanced functional patterns, look at polymorphic functions, typical data crunching techniques, adjusting code through augmentation, and generalization. Lastly, we will take a look at the advanced techniques to equip you with everything you need to write flawless code.

Who is this book for?

This book is for .NET developers, web programmers, C# developers, and F# developers. So, if you have basic experience in F# programming and developing performance-critical applications, then this book is for you.

What you will learn

  • Acquire the practical knowledge to use the main functional design patterns
  • Realign some imperative and object-oriented principles under the functional approach
  • Develop your confidence in building and combining first-order and higher-order functions
  • Learn to use core language pattern matching effectively
  • Make use of native F# algebraic data types in place of custom-built classes
  • Recognize and measure the difference in resource consumption between sequences and materialized data collections
  • Navigate and use F# Core libraries with ease by seeing patterns behind specific library functions
  • Master writing generic polymorphic code
Estimated delivery fee Deliver to India

Premium delivery 5 - 8 business days

₹630.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Nov 30, 2016
Length: 318 pages
Edition : 1st
Language : English
ISBN-13 : 9781785884726
Category :
Languages :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Estimated delivery fee Deliver to India

Premium delivery 5 - 8 business days

₹630.95
(Includes tracking information)

Product Details

Publication date : Nov 30, 2016
Length: 318 pages
Edition : 1st
Language : English
ISBN-13 : 9781785884726
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
₹800 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
₹4500 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts
₹5000 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just ₹400 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 10,949.97
Mastering F#
₹3649.99
F# 4.0 Design Patterns
₹3649.99
F# High Performance
₹3649.99
Total 10,949.97 Stars icon

Table of Contents

13 Chapters
1. Begin Thinking Functionally Chevron down icon Chevron up icon
2. Dissecting F# Origins and Design Chevron down icon Chevron up icon
3. Basic Functions Chevron down icon Chevron up icon
4. Basic Pattern Matching Chevron down icon Chevron up icon
5. Algebraic Data Types Chevron down icon Chevron up icon
6. Sequences - The Core of Data Processing Patterns Chevron down icon Chevron up icon
7. Advanced Techniques: Functions Revisited Chevron down icon Chevron up icon
8. Data Crunching – Data Transformation Patterns Chevron down icon Chevron up icon
9. More Data Crunching Chevron down icon Chevron up icon
10. Type Augmentation and Generic Computations Chevron down icon Chevron up icon
11. F# Expert Techniques Chevron down icon Chevron up icon
12. F# and OOP Principles/Design Patterns Chevron down icon Chevron up icon
13. Troubleshooting Functional Code Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5
(4 Ratings)
5 star 50%
4 star 0%
3 star 0%
2 star 50%
1 star 0%
Fernando Saldanha Feb 16, 2017
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Great book. Delivers what it promises. Not for beginners.F# allows the programmer to write standard OO programs. The reader of this book will get a better understanding of F# (an functional programming languages in general), which will facilitate transitioning to a programming style that fully exploits the capabilities of the F# language. The language features are neatly classified and the role of each category is explained.Chapter 12 also contains an excellent discussion of the SOLID principles of OO programming and their counterparts (or lack thereof, not for lack of implementation, but for lack of need) in FP.
Amazon Verified review Amazon
Richard Broida Dec 28, 2016
Full star icon Full star icon Full star icon Full star icon Full star icon 5
There are a lot of good F# books, but this is a great one to start with because it explains the concepts along with the syntax. You need the concepts both to use the language and to explain to your fellow programmers why they should use the language. There's a chapter on GOF-style patterns, but the book's scope is much more comprehensive that that.
Amazon Verified review Amazon
Hugh W. Gleaves Aug 14, 2017
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
I had high expectations for this book, being someone fairly new to F# and the functional discipline.Sadly it disappointed me as offering nothing beyond what most other F# books cover. There was too much emphasis on imperative programming, no significant coverage of computation expressions, it was also pretty obvious that the author knew his subject bud had written in poorly in English, a greater editorial presence here would have helped. Frankly it was money wasted since there was nothing in the book that isn't easily found elsewhere.
Amazon Verified review Amazon
Talmage Mar 24, 2017
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
Overall, the explanation of functional programming paradigms and techniques is solid. The biggest obstacle to adopting F# is not syntax or functions--which are the focuses of many books--but rather understanding how to think in new terms as a functional programmer. This book does a good job of teaching these techniques.My problem is that the proofreading is atrocious. First, the narrative sections have many grammatical issues and incorrect words (e.g. "seize" instead of "cease") which interrupt flow. Additionally, the spacing in the Kindle cloud version is often off, which can be a big problem in a language like F# in which whitespace matters.More glaring, however, is that the source code is incomplete. For example, in Chapter 6, the text states "Additional information for those of you who are eager to dig deeper is given in the Ch6_1.fsx script of this book's accompanying code, where the use of each of the library functions is illustrated by a brief code sample." In the first four sections (aggregation, generation, wrapping/type conversion, and appliers patterns), only a couple of functions are not illustrated. However for the final three sections (recombination, filter, and mapper patterns), NONE of the illustrations are present. NOT A SINGLE ONE of the 38 or so functions listed. Additionally, I wonder how complete and updated the list even is, considering the deprecated "Seq.nth" function is provided instead of the newer "Seq.item".In short, this book could have been really good, but it seems rushed and sloppy. If there were a good errata, I could make do. However, it is surprising to find that no errata yet exist on the book web page (at packthub.com). I'm considering returning the Kindle purchase for a refund. Hopefully a more polished version will emerge later.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is the delivery time and cost of print book? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela
What is custom duty/charge? Chevron down icon Chevron up icon

Customs duty are charges levied on goods when they cross international borders. It is a tax that is imposed on imported goods. These duties are charged by special authorities and bodies created by local governments and are meant to protect local industries, economies, and businesses.

Do I have to pay customs charges for the print book order? Chevron down icon Chevron up icon

The orders shipped to the countries that are listed under EU27 will not bear custom charges. They are paid by Packt as part of the order.

List of EU27 countries: www.gov.uk/eu-eea:

A custom duty or localized taxes may be applicable on the shipment and would be charged by the recipient country outside of the EU27 which should be paid by the customer and these duties are not included in the shipping charges been charged on the order.

How do I know my custom duty charges? Chevron down icon Chevron up icon

The amount of duty payable varies greatly depending on the imported goods, the country of origin and several other factors like the total invoice amount or dimensions like weight, and other such criteria applicable in your country.

For example:

  • If you live in Mexico, and the declared value of your ordered items is over $ 50, for you to receive a package, you will have to pay additional import tax of 19% which will be $ 9.50 to the courier service.
  • Whereas if you live in Turkey, and the declared value of your ordered items is over € 22, for you to receive a package, you will have to pay additional import tax of 18% which will be € 3.96 to the courier service.
How can I cancel my order? Chevron down icon Chevron up icon

Cancellation Policy for Published Printed Books:

You can cancel any order within 1 hour of placing the order. Simply contact customercare@packt.com with your order details or payment transaction id. If your order has already started the shipment process, we will do our best to stop it. However, if it is already on the way to you then when you receive it, you can contact us at customercare@packt.com using the returns and refund process.

Please understand that Packt Publishing cannot provide refunds or cancel any order except for the cases described in our Return Policy (i.e. Packt Publishing agrees to replace your printed book because it arrives damaged or material defect in book), Packt Publishing will not accept returns.

What is your returns and refunds policy? Chevron down icon Chevron up icon

Return Policy:

We want you to be happy with your purchase from Packtpub.com. We will not hassle you with returning print books to us. If the print book you receive from us is incorrect, damaged, doesn't work or is unacceptably late, please contact Customer Relations Team on customercare@packt.com with the order number and issue details as explained below:

  1. If you ordered (eBook, Video or Print Book) incorrectly or accidentally, please contact Customer Relations Team on customercare@packt.com within one hour of placing the order and we will replace/refund you the item cost.
  2. Sadly, if your eBook or Video file is faulty or a fault occurs during the eBook or Video being made available to you, i.e. during download then you should contact Customer Relations Team within 14 days of purchase on customercare@packt.com who will be able to resolve this issue for you.
  3. You will have a choice of replacement or refund of the problem items.(damaged, defective or incorrect)
  4. Once Customer Care Team confirms that you will be refunded, you should receive the refund within 10 to 12 working days.
  5. If you are only requesting a refund of one book from a multiple order, then we will refund you the appropriate single item.
  6. Where the items were shipped under a free shipping offer, there will be no shipping costs to refund.

On the off chance your printed book arrives damaged, with book material defect, contact our Customer Relation Team on customercare@packt.com within 14 days of receipt of the book with appropriate evidence of damage and we will work with you to secure a replacement copy, if necessary. Please note that each printed book you order from us is individually made by Packt's professional book-printing partner which is on a print-on-demand basis.

What tax is charged? Chevron down icon Chevron up icon

Currently, no tax is charged on the purchase of any print book (subject to change based on the laws and regulations). A localized VAT fee is charged only to our European and UK customers on eBooks, Video and subscriptions that they buy. GST is charged to Indian customers for eBooks and video purchases.

What payment methods can I use? Chevron down icon Chevron up icon

You can pay with the following card types:

  1. Visa Debit
  2. Visa Credit
  3. MasterCard
  4. PayPal
What is the delivery time and cost of print books? Chevron down icon Chevron up icon

Shipping Details

USA:

'

Economy: Delivery to most addresses in the US within 10-15 business days

Premium: Trackable Delivery to most addresses in the US within 3-8 business days

UK:

Economy: Delivery to most addresses in the U.K. within 7-9 business days.
Shipments are not trackable

Premium: Trackable delivery to most addresses in the U.K. within 3-4 business days!
Add one extra business day for deliveries to Northern Ireland and Scottish Highlands and islands

EU:

Premium: Trackable delivery to most EU destinations within 4-9 business days.

Australia:

Economy: Can deliver to P. O. Boxes and private residences.
Trackable service with delivery to addresses in Australia only.
Delivery time ranges from 7-9 business days for VIC and 8-10 business days for Interstate metro
Delivery time is up to 15 business days for remote areas of WA, NT & QLD.

Premium: Delivery to addresses in Australia only
Trackable delivery to most P. O. Boxes and private residences in Australia within 4-5 days based on the distance to a destination following dispatch.

India:

Premium: Delivery to most Indian addresses within 5-6 business days

Rest of the World:

Premium: Countries in the American continent: Trackable delivery to most countries within 4-7 business days

Asia:

Premium: Delivery to most Asian addresses within 5-9 business days

Disclaimer:
All orders received before 5 PM U.K time would start printing from the next business day. So the estimated delivery times start from the next day as well. Orders received after 5 PM U.K time (in our internal systems) on a business day or anytime on the weekend will begin printing the second to next business day. For example, an order placed at 11 AM today will begin printing tomorrow, whereas an order placed at 9 PM tonight will begin printing the day after tomorrow.


Unfortunately, due to several restrictions, we are unable to ship to the following countries:

  1. Afghanistan
  2. American Samoa
  3. Belarus
  4. Brunei Darussalam
  5. Central African Republic
  6. The Democratic Republic of Congo
  7. Eritrea
  8. Guinea-bissau
  9. Iran
  10. Lebanon
  11. Libiya Arab Jamahriya
  12. Somalia
  13. Sudan
  14. Russian Federation
  15. Syrian Arab Republic
  16. Ukraine
  17. Venezuela