|
|
|
|
LEADER |
00000cam a2200000Ii 4500 |
001 |
OR_ocn975487028 |
003 |
OCoLC |
005 |
20231017213018.0 |
006 |
m o d |
007 |
cr cnu|||unuuu |
008 |
170314s2017 cau ob 001 0 eng d |
040 |
|
|
|a N$T
|b eng
|e rda
|e pn
|c N$T
|d N$T
|d TEFOD
|d EBLCP
|d YDX
|d UMI
|d IDEBK
|d OCLCF
|d STF
|d TOH
|d OCLCQ
|d XPJ
|d OCLCQ
|d VT2
|d COO
|d CEF
|d KSU
|d NTG
|d DEBBG
|d OCLCQ
|d WYU
|d C6I
|d OCLCQ
|d UAB
|d UKAHL
|d OCLCQ
|d HS0
|d ZCU
|d OCLCO
|d OCLCQ
|d OCLCO
|
019 |
|
|
|a 978350361
|a 1048180385
|a 1066626619
|a 1103273068
|a 1227638385
|
020 |
|
|
|a 9781491973349
|q (electronic bk.)
|
020 |
|
|
|a 149197334X
|q (electronic bk.)
|
020 |
|
|
|a 9781491973325
|q (electronic bk.)
|
020 |
|
|
|a 1491973323
|q (electronic bk.)
|
020 |
|
|
|a 1491973374
|
020 |
|
|
|a 9781491973370
|
020 |
|
|
|z 9781491973370
|
029 |
1 |
|
|a AU@
|b 000060343506
|
029 |
1 |
|
|a GBVCP
|b 1004860722
|
035 |
|
|
|a (OCoLC)975487028
|z (OCoLC)978350361
|z (OCoLC)1048180385
|z (OCoLC)1066626619
|z (OCoLC)1103273068
|z (OCoLC)1227638385
|
037 |
|
|
|a 5F119A19-ED7B-46C4-999F-A3DB516A4674
|b OverDrive, Inc.
|n http://www.overdrive.com
|
050 |
|
4 |
|a TK5105.88813
|b .S7 2017
|
072 |
|
7 |
|a COM
|x 060180
|2 bisacsh
|
072 |
|
7 |
|a COM
|x 060090
|2 bisacsh
|
082 |
0 |
4 |
|a 005.133
|2 23
|
049 |
|
|
|a UAMI
|
100 |
1 |
|
|a St. Laurent, Simon,
|e author.
|
245 |
1 |
0 |
|a Introducing Erlang :
|b getting started in functional programming /
|c Simon St. Laurent.
|
250 |
|
|
|a 2nd edition.
|
264 |
|
1 |
|a Sebastopol :
|b O'Reilly,
|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
|
500 |
|
|
|a Includes index.
|
588 |
0 |
|
|a Online resource, title from PDF title page (EBSCO, viewed March 15, 2017).
|
505 |
0 |
|
|a Copyright; Table of Contents; Preface; Who This Book Is For; Who This Book Is Not For; What This Book Will Do For You; How This Book Works; Etudes for Erlang; Why I Wrote This Book; Other Resources; Are You Sure You Want Erlang?; Erlang Will Change You; Conventions Used in This Book; A Note on Erlang Syntax; Using Code Examples; Help This Book Grow; Please Use It For Good; O'Reilly Safari; How to Contact Us; Acknowledgments; Chapter 1. Getting Comfortable; Installation; Firing It Up; First Steps: The Shell; Moving through Text; Moving through History; Moving through Files; Doing Something.
|
505 |
8 |
|
|a Calling FunctionsNumbers in Erlang; Working with Variables in the Shell; Seeing Your Bound Variables; Clearing Bound Variables in the Shell; Chapter 2. Functions and Modules; Fun with fun; Defining Modules; From Module to fun; Functions and Variable Scope; Module Directives; Documenting Code; Documenting Modules; Documenting Functions; Documenting Your Application; Chapter 3. Atoms, Tuples, and Pattern Matching; Atoms; Pattern Matching with Atoms; Atomic Booleans; Guards; Underscoring That You Don't Care; Adding Structure: Tuples; Pattern Matching with Tuples; Processing Tuples.
|
505 |
8 |
|
|a Chapter 4. Logic and RecursionLogic Inside of Functions; Evaluating Cases; If This, Then That; Variable Assignment in case and if Constructs; The Gentlest Side Effect: io:format; Simple Recursion; Counting Down; Counting Up; Recursing with Return Values; Chapter 5. Communicating with Humans; Strings; Asking Users for Information; Gathering Terms; Gathering Characters; Reading Lines of Text; Chapter 6. Lists; List Basics; Splitting Lists into Heads and Tails; Processing List Content; Creating Lists with Heads and Tails; Mixing Lists and Tuples; Building a List of Lists.
|
505 |
8 |
|
|a Chapter 7. Higher-Order Functions and List ComprehensionsSimple Higher-Order Functions; Creating New Lists with Higher-Order Functions; Reporting on a List; Running List Values Through a Function; Filtering List Values; Beyond List Comprehensions; Testing Lists; Splitting Lists; Folding Lists; Chapter 8. Playing with Processes; The Shell Is a Process; Spawning Processes from Modules; Lightweight Processes; Registering a Process; When Processes Break; Processes Talking Amongst Themselves; Watching Your Processes; Breaking Things and Linking Processes.
|
505 |
8 |
|
|a Chapter 9. Exceptions, Errors, and DebuggingFlavors of Errors; Catching Runtime Errors as They Happen; Raising Exceptions with throw; Logging Progress and Failure; Debugging through a GUI; Tracing Messages; Watching Function Calls; Chapter 10. Storing Structured Data; Mapping Your Data; From Tuples to Records; Setting Up Records; Creating and Reading Records; Using Records in Functions and Modules; Storing Records in Erlang Term Storage; Creating and Populating a Table; Simple Queries; A Key Feature: Overwriting Values; ETS Tables and Processes; Next Steps; Storing Records in Mnesia.
|
520 |
|
|
|a "If you're new to Erlang, its functional style can seem difficult, but with help from this hands-on introduction, you'll scale the learning curve and discover how enjoyable, powerful, and fun this language can be. In this updated second edition, author Simon St. Laurent shows you how to write simple Erlang programs by teaching you one basic skill at a time. You'll learn about pattern matching, recursion, message passing, process-oriented programming, and establishing pathways for data rather than telling it where to go. By the end of your journey, you'll understand why Erlang is ideal for concurrency and resilience."--Provided by publisher.
|
504 |
|
|
|a Includes bibliographical references and index.
|
590 |
|
|
|a O'Reilly
|b O'Reilly Online Learning: Academic/Public Library Edition
|
650 |
|
0 |
|a ERLANG (Computer program language)
|
650 |
|
0 |
|a Web services.
|
650 |
|
0 |
|a Application software
|x Development.
|
650 |
|
6 |
|a ERLANG (Langage de programmation)
|
650 |
|
6 |
|a Services Web.
|
650 |
|
6 |
|a Logiciels d'application
|x Développement.
|
650 |
|
7 |
|a COMPUTERS
|x Web
|x Web Services & APIs.
|2 bisacsh
|
650 |
|
7 |
|a COMPUTERS
|x Internet
|x Application Development.
|2 bisacsh
|
650 |
|
7 |
|a Application software
|x Development
|2 fast
|
650 |
|
7 |
|a ERLANG (Computer program language)
|2 fast
|
650 |
|
7 |
|a Web services
|2 fast
|
776 |
0 |
8 |
|i Print version:
|a St. Laurent, Simon.
|t Introducing Erlang.
|b 2nd edition.
|d Sebastopol : O'Reilly, 2017
|w (DLC) 2017446714
|
856 |
4 |
0 |
|u https://learning.oreilly.com/library/view/~/9781491973363/?ar
|z Texto completo (Requiere registro previo con correo institucional)
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH32575392
|
938 |
|
|
|a Askews and Holts Library Services
|b ASKH
|n AH32539319
|
938 |
|
|
|a ProQuest Ebook Central
|b EBLB
|n EBL4821080
|
938 |
|
|
|a EBSCOhost
|b EBSC
|n 1484850
|
938 |
|
|
|a ProQuest MyiLibrary Digital eBook Collection
|b IDEB
|n cis37766642
|
938 |
|
|
|a YBP Library Services
|b YANK
|n 13670001
|
994 |
|
|
|a 92
|b IZTAP
|