Cargando…

Practical Haskell : a real world guide to programming /

Get a practical, hands-on introduction to the Haskell language, its libraries and environment, and to the functional programming paradigm that is fast growing in importance in the software industry. This book contains excellent coverage of the Haskell ecosystem and supporting tools, include Cabal an...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Mena, Alejandro Serrano (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [New York] : Apress, [2019]
Edición:Second edition.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1099434629
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 190429t20192019nyu ob 000 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d N$T  |d GW5XE  |d EBLCP  |d TEFOD  |d CEF  |d UKMGB  |d OCLCF  |d UMI  |d UKAHL  |d OCLCQ  |d BRF  |d OCLCQ  |d OCLCO  |d COM  |d OCLCQ  |d AUD  |d OCLCQ  |d OCLCO 
015 |a GBB986619  |2 bnb 
016 7 |a 019388219  |2 Uk 
019 |a 1103606131  |a 1179676134 
020 |a 9781484244807  |q (electronic bk.) 
020 |a 148424480X  |q (electronic bk.) 
020 |z 9781484244791 
029 1 |a AU@  |b 000065273365 
029 1 |a AU@  |b 000065313829 
029 1 |a AU@  |b 000066233430 
029 1 |a AU@  |b 000067370064 
029 1 |a AU@  |b 000069023335 
029 1 |a UKMGB  |b 019388219 
035 |a (OCoLC)1099434629  |z (OCoLC)1103606131  |z (OCoLC)1179676134 
037 |a 5EDDB22C-3E9C-4FE1-BBDA-3ABFF32A2601  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.H37 
072 7 |a COM  |x 051000  |2 bisacsh 
082 0 4 |a 005.13/3  |2 23 
049 |a UAMI 
100 1 |a Mena, Alejandro Serrano.,  |e author. 
245 1 0 |a Practical Haskell :  |b a real world guide to programming /  |c Alejandro Serrano Mena. 
250 |a Second edition. 
264 1 |a [New York] :  |b Apress,  |c [2019] 
264 4 |c Ã2019 
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 
504 |a Includes bibliographical references. 
588 0 |a Online resource; title from PDF title page (EBSCO, viewed April 30, 2019). 
505 0 |a Intro; Table of Contents; About the Author; About the Technical Reviewer; Acknowledgments; Introduction; Part I: First Steps; Chapter 1: Going Functional; Why Haskell?; Why Pure Functional Programming?; Why Strong Static Typing?; The Haskell Ecosystem; The History of Haskell; Your Working Environment; Installing on Windows or Mac OS X; Installing on Linux; Installing on Linux from Source; First Steps with GHCi; The Time Machine Store; Summary; Chapter 2: Declaring the Data Model; Characters, Numbers, and Lists; Characters; Numbers; Strings; Lists; Creating a New Project 
505 8 |a Creating a Project with CabalCreating a Project with Stack; Understanding Modules; Cabal and Stack; Defining Simple Functions; Creating a Simple Function; Specifying the Function's Type; Developing a Robust Example; Returning More Than One Value; Working with Data Types; Pattern Matching; Simple Patterns; Lists and Tuples; Guards; View Patterns; Records; Creation and Use; The Default Values Idiom; Summary; Chapter 3: Increasing Code Reuse; Parametric Polymorphism; Functions As Parameters; Higher-Order Functions; Anonymous Functions; Partial Application of a Function; More on Modules 
505 8 |a Module ImportsSmart Constructors and Views; Diving into Lists; Folds; Lists and Predicates; Lists Containing Tuples; List Comprehensions; Haskell Origami; Summary; Chapter 4: Using Containers and Type Classes; Using Packages; Managing Dependencies; Building Packages; Building Packages with Cabal; Building Packages with Stack; Obtaining Help; Containers: Maps, Sets, Trees, Graphs; Maps; Sets; Trees; Graphs; Ad Hoc Polymorphism: Type Classes; Declaring Classes and Instances; Built-in Type Classes; Binary Trees for the Minimum Price; Step 1: Simple Binary Trees; Step 2: Polymorphic Binary Trees 
505 8 |a Step 3: Binary Trees with Monoidal CacheContainer-Related Type Classes; Functors; Foldables; Summary; Chapter 5: Laziness and Infinite Structures; An Infinite Number of Time Machines; Lazy Evaluation Model; Understanding Evaluation in Haskell; Problems with Laziness; Pattern Matching and Laziness; Profiling with GHC; Strictness Annotations; Summary; Part II: Data Mining; Chapter 6: Knowing Your Clients Using Monads; Data Mining; Implementing K-means; Lenses; Discovering Monads; Watching Out for Incomplete Data; Combinators for State; Dissecting the Combinators; do Notation; Monad Laws 
505 8 |a Different Sorts of StateState and Lenses; Reader, Writer, and RWS; Mutable References with ST; Summary; Chapter 7: More Monads: Now for Recommendations; Returning More Than One Value; The List Monad; A New View Over Monads; Failures and Alternatives; Association Rules Learning; Flattening Values into Transactions; The Apriori Algorithm; Search Problems; Paths in a Graph; The Logic Monad; Monads and Lists Redux; Combining Values Under a Monad; Monad Comprehensions; Combining Monads; Monad Transformers; Monad Classes; Summary; Chapter 8: Working in Several Cores 
520 |a Get a practical, hands-on introduction to the Haskell language, its libraries and environment, and to the functional programming paradigm that is fast growing in importance in the software industry. This book contains excellent coverage of the Haskell ecosystem and supporting tools, include Cabal and Stack for managing projects, HUnit and QuickCheck for software testing, the Spock framework for developing web applications, Persistent and Esqueleto for database access, and parallel and distributed programming libraries. You'll see how functional programming is gathering momentum, allowing you to express yourself in a more concise way, reducing boilerplate, and increasing the safety of your code. Haskell is an elegant and noise-free pure functional language with a long history, having a huge number of library contributors and an active community. This makes Haskell the best tool for both learning and applying functional programming, and Practical Haskell takes advantage of this to show off the language and what it can do. What You Will Learn Get started programming with Haskell Examine the different parts of the language Gain an overview of the most important libraries and tools in the Haskell ecosystem Apply functional patterns in real-world scenarios Understand monads and monad transformers Proficiently use laziness and resource management Who This Book Is For Experienced programmers who may be new to the Haskell programming language. However, some prior exposure to Haskell is recommended. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Haskell (Computer program language) 
650 0 |a Functional programming (Computer science) 
650 6 |a Haskell (Langage de programmation) 
650 6 |a Programmation fonctionnelle. 
650 7 |a COMPUTERS  |x Programming  |x General.  |2 bisacsh 
650 7 |a Functional programming (Computer science)  |2 fast 
650 7 |a Haskell (Computer program language)  |2 fast 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484244807/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH36288257 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5771292 
938 |a EBSCOhost  |b EBSC  |n 2110834 
994 |a 92  |b IZTAP