Cargando…

Scala design patterns : write efficient, clean, and reusable code with Scala /

Write efficient, clean, and reusable code with Scala About This Book Unleash the power of Scala and apply it in the real world Increase your efficiency by leveraging the power of Creational, Structural, Behavioural, and Functional design patterns Build object oriented and functional applications qui...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Nikolov, Ivan (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: Birmingham, UK : Packt Publishing, 2016.
Colección:Community experience distilled.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn945637662
003 OCoLC
005 20231017213018.0
006 m o d
007 cr unu||||||||
008 160328s2016 enka o 001 0 eng d
040 |a UMI  |b eng  |e rda  |e pn  |c UMI  |d OCLCF  |d N$T  |d KSU  |d COO  |d DEBBG  |d YDXCP  |d IDEBK  |d DEBSZ  |d OCLCQ  |d REB  |d UOK  |d CEF  |d NLE  |d UKMGB  |d WYU  |d AGLDB  |d IGB  |d RDF  |d QGK  |d OCLCO  |d OCLCQ 
015 |a GBB6G3487  |2 bnb 
016 7 |a 018010591  |2 Uk 
019 |a 942841888  |a 944156523  |a 1259077409 
020 |a 9781785882029  |q (electronic bk.) 
020 |a 1785882023  |q (electronic bk.) 
020 |z 9781785882500 
020 |z 1785882503 
029 1 |a DEBBG  |b BV043969040 
029 1 |a DEBSZ  |b 473885859 
029 1 |a ZWZ  |b 192200984 
029 1 |a DEBSZ  |b 485795531 
029 1 |a GBVCP  |b 882848984 
029 1 |a UKMGB  |b 018010591 
035 |a (OCoLC)945637662  |z (OCoLC)942841888  |z (OCoLC)944156523  |z (OCoLC)1259077409 
037 |a CL0500000723  |b Safari Books Online 
050 4 |a QA76.73.S28 
072 7 |a COM  |x 051010  |2 bisacsh 
082 0 4 |a 005.114  |2 23 
049 |a UAMI 
100 1 |a Nikolov, Ivan,  |e author. 
245 1 0 |a Scala design patterns :  |b write efficient, clean, and reusable code with Scala /  |c Ivan Nikolov. 
246 3 0 |a Write efficient, clean, and reusable code with Scala 
264 1 |a Birmingham, UK :  |b Packt Publishing,  |c 2016. 
300 |a 1 online resource (1 volume) :  |b illustrations. 
336 |a text  |b txt  |2 rdacontent 
337 |a computer  |b c  |2 rdamedia 
338 |a online resource  |b cr  |2 rdacarrier 
347 |a text file 
490 1 |a Community experience distilled 
588 |a Description based on online resource; title from cover page (Safari, viewed March 24, 2016). 
500 |a Includes index. 
505 0 |a Cover; Copyright; Credits; About the Author; Acknowledgments; About the Reviewer; www.PacktPub.com; Table of Contents; Preface; Chapter 1: The Design Patterns Out There and Setting Up Your Environment; Design patterns; Scala and design patterns; The need for design patterns and their benefits; Design pattern categories; Creational design patterns; The abstract factory design pattern; The factory method design pattern; The lazy initialization design pattern; The singleton design pattern; The object pool design pattern; The builder design pattern; The prototype design pattern 
505 8 |a Structural design patternsThe adapter design pattern; The decorator design pattern; The bridge design pattern; The composite design pattern; The facade design pattern; The flyweight design pattern; The proxy design pattern; Behavioral design patterns; The value object design pattern; The null object design pattern; The strategy design pattern; The command design pattern; The chain of responsibility design pattern; The interpreter design pattern; The iterator design pattern; The mediator design pattern; The memento design pattern; The observer design pattern; The state design pattern 
505 8 |a The template method design patternThe visitor design pattern; Functional design patterns; Monoids; Monads; Functors; Scala-specific design patterns; The lens design pattern; The cake design pattern; Pimp my library; Stackable traits; The type class design pattern; Lazy evaluation; Partial functions; Implicit injection; Duck typing; Memoization; How to choose a design pattern; Setting up the development environment; Installing Scala; Scala IDEs; Dependency management; SBT; Maven; SBT versus Maven; Summary; Chapter 2: Traits and Mixin Compositions; Traits; Traits as interfaces 
505 8 |a Mixing in traits with variablesTraits as classes; Extending classes; Extending traits; Mixin compositions; Mixing traits in; Composing; Composing simple traits; Composing complex traits; Composing with self-types; Clashing traits; Same signatures and return types traits; Same signatures and different return types traits; Same signatures and return types mixins; Same signatures and different return types mixins; Multiple inheritance; The diamond problem; The limitations; Linearization; Rules of inheritance hierarchies; Linearization rules; How linearization works; Initialization 
505 8 |a Method overridingTesting traits; Using a class; Mixing the trait in; Mixing into the test class; Mixing into the test cases; Running the tests; Traits versus classes; Summary; Chapter 3: Unification; Functions and classes; Functions as classes; Function literals; Functions without syntactic sugar; Increased expressivity; Algebraic data types and class hierarchies; ADTs; Sum ADTs; Product ADTs; Hybrid ADTs; The unification; Pattern matching; Pattern matching with values; Pattern matching for product ADTs; Modules and objects; Using modules; Summary; Chapter 4: Abstract and Self Types 
520 |a Write efficient, clean, and reusable code with Scala About This Book Unleash the power of Scala and apply it in the real world Increase your efficiency by leveraging the power of Creational, Structural, Behavioural, and Functional design patterns Build object oriented and functional applications quickly and effectively Who This Book Is For If you want to increase your understanding of Scala and apply it to real-life application development, then this book is for you. We've also designed the book to be used as a quick reference guide while creating applications. Previous Scala programming knowledge is expected. What You Will Learn Immerse yourself in industry-standard design patterns - structural, creational, and behavioral - to create extraordinary applications Feel the power of traits and their application in Scala Implement abstract and self types and build clean design patterns Build complex entity relationships using structural design patterns Create applications faster by applying functional design patterns In Detail Scala has become increasingly popular in many different IT sectors. The language is exceptionally feature-rich which helps developers write less code and get faster results. Design patterns make developer's lives easier by helping them write great software that is easy to maintain, runs efficiently and is valuable to the company or people concerned. You will learn about the various features of Scala and be able to apply well-known, industry-proven design patterns in your work. The book starts off by focusing on some of the most interesting features of Scala while using practical real-world examples. We will also cover the popular "Gang of Four" design patterns and show you how to incorporate functional patterns effectively. By the end of this book, you will have enough knowledge and understanding to quickly assess problems and come up with elegant solutions. Style and approach The design patterns in the book will be explained using real-world, step-by-step examples. For each design pattern, there will be hints about when to use it and when to look for something more suitable. This book can also be used as a practical guide, showing you how to leverage design patterns effectively. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
590 |a eBooks on EBSCOhost  |b EBSCO eBook Subscription Academic Collection - Worldwide 
650 0 |a Scala (Computer program language) 
650 0 |a Application software  |x Development. 
650 0 |a Computer programming. 
650 6 |a Scala (Langage de programmation) 
650 6 |a Logiciels d'application  |x Développement. 
650 6 |a Programmation (Informatique) 
650 7 |a computer programming.  |2 aat 
650 7 |a COMPUTERS / Programming Languages / General  |2 bisacsh 
650 7 |a Application software  |x Development.  |2 fast  |0 (OCoLC)fst00811707 
650 7 |a Computer programming.  |2 fast  |0 (OCoLC)fst00872390 
650 7 |a Scala (Computer program language)  |2 fast  |0 (OCoLC)fst01763491 
776 |z 1-78588-250-3 
830 0 |a Community experience distilled. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781785882500/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a EBSCOhost  |b EBSC  |n 1193729 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis34109857 
938 |a YBP Library Services  |b YANK  |n 12872688 
994 |a 92  |b IZTAP