Cargando…

Haskell Cookbook.

Save time and build fast, functional, and concurrent application using Haskell About This Book Comprehensive guide for establishing a strong foundation in Haskell and developing pragmatic code Create a full fledged web application using Haskell Work with Lens, Haskell Extensions, and write code for...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Sajanikar, Yogesh
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Packt Publishing, 2017.
Temas:
Acceso en línea:Texto completo

MARC

LEADER 00000cam a2200000Ma 4500
001 EBSCO_on1004970431
003 OCoLC
005 20231017213018.0
006 m o d
007 cr |n|||||||||
008 170929s2017 xx o 000 0 eng d
040 |a IDEBK  |b eng  |e pn  |c IDEBK  |d EBLCP  |d YDX  |d TEFOD  |d MERUC  |d IDB  |d OCLCO  |d OCLCF  |d COO  |d OCLCQ  |d LVT  |d N$T  |d UKAHL  |d CNCEN  |d UKMGB  |d OCLCQ  |d OCLCO  |d OCLCQ  |d OCLCO 
015 |a GBB7G2495  |2 bnb 
016 7 |a 018498838  |2 Uk 
019 |a 1005104153  |a 1005298859 
020 |a 1786462656  |q (electronic bk.) 
020 |a 9781786462657  |q (electronic bk.) 
020 |z 9781786461353 
029 1 |a AU@  |b 000066230998 
029 1 |a CHNEW  |b 000975018 
029 1 |a CHVBK  |b 50326153X 
029 1 |a UKMGB  |b 018498838 
035 |a (OCoLC)1004970431  |z (OCoLC)1005104153  |z (OCoLC)1005298859 
037 |a 1038331  |b MIL 
037 |a 8CFA84D7-9483-482F-86F4-7EDFB05ECF59  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.H37 
072 7 |a COM  |x 051010  |2 bisacsh 
082 0 4 |a 005.114  |2 23 
049 |a UAMI 
100 1 |a Sajanikar, Yogesh. 
245 1 0 |a Haskell Cookbook. 
260 |b Packt Publishing,  |c 2017. 
300 |a 1 online resource 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
588 0 |a Print version record. 
505 0 |a Cover; Copyright; Credits; About the Author; About the Reviewer; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Foundations of Haskell; Introduction; Getting started with Haskell; How to do it ... ; How it works ... ; Dissecting Hello World; There's more ... ; Working with data types; How to do it ... ; How it works ... ; There's more ... ; Working with pure functions and user-defined data types; Getting ready; How to do it ... ; How it works ... ; Source formatting; Working with list functions; Getting ready; How to do it ... ; How it works ... ; List creation; Enumerated list. 
505 8 |a Head and tail of a listOperations on a list; Indexed access; Checking whether an element is present; Pattern matching on list; List concatenation; Strings are lists; There's more ... ; Chapter 2: Getting Functional; Introduction; Working with recursive functions; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Reversing a list -- Recursive worker function pattern; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Creating maps and filters; Getting ready; How to do it ... ; How it works ... ; Map function; Filter function; There's more ... 
505 8 |a Working with laziness and recursionGetting ready; How to do it ... ; How it works ... ; Working with folds; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Sorting a list; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Implementing merge sort; Getting ready; How to do it ... ; How it works ... ; Implementing Eratosthenes Sieve; Getting ready; How to do it ... ; How it works ... ; There's more ... ; Chapter 3: Defining Data; Introduction; Defining a product type; Getting ready; How to do it ... ; How it works ... ; Defining a sum type; Getting ready; How to do it ... 
505 8 |a How it works ... Defining a binary tree and traversing it; Getting ready; How to do it ... ; How it works ... ; Defining data with functions; Getting ready; How to do it ... ; How it works ... ; Using Maybe; Getting ready; How to do it ... ; How it works ... ; Using Either; Getting ready; How to do it ... ; How it works ... ; Working with type classes; Getting ready; How to do it ... ; How it works ... ; Working with Monoid; Getting ready; How to do it ... ; How it works ... ; Chapter 4: Working with Functors, Applicatives, and Monads; Introduction; Working with Functors; How to do it ... ; How it works ... 
505 8 |a Binary tree as FunctorHow to do it ... ; How it works ... ; Working with Applicatives; How to do it ... ; How it works ... ; Binary tree as Applicative; How to do it ... ; How it works ... ; Working with monad; How to do it ... ; How it works ... ; There's more ... ; List as monad; How to do it ... ; How it works ... ; Working with IO monad; How to do it ... ; How it works ... ; Writing INI parser; How to do it ... ; How it works ... ; Errors and exception handling; How to do it ... ; How it works ... ; Chapter 5: More about Monads; Introduction; Writing a State Monad; How to do it ... ; How it works ... 
520 |a Save time and build fast, functional, and concurrent application using Haskell About This Book Comprehensive guide for establishing a strong foundation in Haskell and developing pragmatic code Create a full fledged web application using Haskell Work with Lens, Haskell Extensions, and write code for concurrent and distributed applications Who This Book Is For This book is targeted at readers who wish to learn the Haskell language. If you are a beginner, Haskell Cookbook will get you started. If you are experienced, it will expand your knowledge base. A basic knowledge of programming will be helpful. What You Will Learn Use functional data structures and algorithms to solve problems Understand the intricacies of the type system Create a simple parser for integer expressions with additions Build high-performance web services with Haskell Master mechanisms for concurrency and parallelism in Haskell Perform parsing and handle scarce resources such as filesystem handles Organize your programs by creating your own types and type classes In Detail Haskell is a purely functional language that has the great ability to develop large and difficult, but easily maintainable software. Haskell Cookbook provides recipes that start by illustrating the principles of functional programming in Haskell, and then gradually build up your expertise in creating industrial-strength programs to accomplish any goal. The book covers topics such as Functors, Applicatives, Monads, and Transformers. You will learn various ways to handle state in your application and explore advanced topics such as Generalized Algebraic Data Types, higher kind types, existential types, and type families. The book will discuss the association of lenses with type classes such as Functor, Foldable, and Traversable to help you manage deep data structures. With the help of the wide selection of examples in this book, you will be able to upgrade your Haskell programming skills and develop scalable software idiomatically. Style and approach The book follows a recipe-based approach. Each recipe addresses specific problems and issues. The recipes provide discussions and insights to explain these problems. Downloading the example code for this book. You can download the example code files for all Packt books you have purchased from your account at http://www.PacktPub.com. If you purchased this book elsewhere, you can visit http://www.PacktPub.com/support and register to have the code file. 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Haskell (Computer program language) 
650 0 |a Application software  |x Development. 
650 6 |a Haskell (Langage de programmation) 
650 6 |a Logiciels d'application  |x Développement. 
650 7 |a COMPUTERS  |x Programming Languages  |x General.  |2 bisacsh 
650 7 |a Application software  |x Development  |2 fast 
650 7 |a Haskell (Computer program language)  |2 fast 
776 0 8 |i Print version:  |a Sajanikar, Yogesh.  |t Haskell cookbook : build functional applications using Monads, Applicatives, and Functors.  |d Birmingham, [England] ; Mumbai, [India] : Packt, ©2017  |h 370 pages  |z 9781786461353 
856 4 0 |u https://ebsco.uam.elogim.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1606543  |z Texto completo 
938 |a Askews and Holts Library Services  |b ASKH  |n AH32958708 
938 |a EBL - Ebook Library  |b EBLB  |n EBL5059809 
938 |a EBSCOhost  |b EBSC  |n 1606543 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis39014929 
938 |a YBP Library Services  |b YANK  |n 14846466 
994 |a 92  |b IZTAP