Cargando…

Thinking in LINQ : harnessing the power of functional programing in .NET applications /

LINQ represents a paradigm shift for developers used to an imperative/object oriented programming style, because LINQ draws on functional programming principles. Thinking in LINQ addresses the differences between these two by providing a set of succinct recipes arranged in several groups, including:...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Mukherjee, Sudipta (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [Berkeley, CA?] : Apress, 2014.
Colección:Expert's voice in .NET.
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000Ii 4500
001 OR_ocn897810227
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu|||unuuu
008 141209s2014 caua o 001 0 eng d
040 |a N$T  |b eng  |e rda  |e pn  |c N$T  |d CUS  |d GW5XE  |d UMI  |d YDXCP  |d S4S  |d COO  |d OCLCF  |d N$T  |d B24X7  |d IDEBK  |d DEBBG  |d EBLCP  |d Z5A  |d MERUC  |d ESU  |d OCLCQ  |d VT2  |d IOG  |d OCLCO  |d OCLCA  |d OCL  |d REB  |d VLB  |d CEF  |d DEHBZ  |d OCLCQ  |d OCLCO  |d INT  |d U3W  |d OCLCQ  |d WYU  |d YOU  |d OCLCQ  |d UKAHL  |d OCLCQ  |d DCT  |d ERF  |d OCLCQ  |d WURST  |d BRF  |d UAB  |d AUD  |d LIV  |d SFB  |d OCLCQ  |d OCLCO 
019 |a 900086511  |a 908082490  |a 910990982  |a 961520613  |a 988800498  |a 1005748890  |a 1026438632  |a 1048153842  |a 1066583117  |a 1066614558  |a 1066614819  |a 1083302912  |a 1086518499  |a 1111044532  |a 1112565728  |a 1129330250  |a 1152994441  |a 1192342589  |a 1204005639  |a 1240513129 
020 |a 9781430268444  |q (electronic bk.) 
020 |a 1430268441  |q (electronic bk.) 
020 |z 9781430268451 
020 |z 143026845X  |q (print) 
020 |z 9781430268451  |q (print) 
024 7 |a 10.1007/978-1-4302-6844-4  |2 doi 
029 1 |a AU@  |b 000056051211 
029 1 |a AU@  |b 000062419172 
029 1 |a CHNEW  |b 000890467 
029 1 |a CHVBK  |b 374491844 
029 1 |a DEBBG  |b BV042490578 
029 1 |a DEBBG  |b BV043617638 
029 1 |a DEBSZ  |b 434837571 
029 1 |a GBVCP  |b 882843567 
029 1 |a NLGGC  |b 38599446X 
029 1 |a AU@  |b 000067105091 
035 |a (OCoLC)897810227  |z (OCoLC)900086511  |z (OCoLC)908082490  |z (OCoLC)910990982  |z (OCoLC)961520613  |z (OCoLC)988800498  |z (OCoLC)1005748890  |z (OCoLC)1026438632  |z (OCoLC)1048153842  |z (OCoLC)1066583117  |z (OCoLC)1066614558  |z (OCoLC)1066614819  |z (OCoLC)1083302912  |z (OCoLC)1086518499  |z (OCoLC)1111044532  |z (OCoLC)1112565728  |z (OCoLC)1129330250  |z (OCoLC)1152994441  |z (OCoLC)1192342589  |z (OCoLC)1204005639  |z (OCoLC)1240513129 
037 |a CL0500000526  |b Safari Books Online 
050 4 |a QA76.76.M52 
072 7 |a COM  |x 051380  |2 bisacsh 
072 7 |a UY  |2 bicssc 
082 0 4 |a 005.1 
049 |a UAMI 
100 1 |a Mukherjee, Sudipta,  |e author. 
245 1 0 |a Thinking in LINQ :  |b harnessing the power of functional programing in .NET applications /  |c by Sudipta Mukherjee. 
264 1 |a [Berkeley, CA?] :  |b Apress,  |c 2014. 
264 2 |a New York, NY :  |b Distributed to the Book trade worldwide by Springer 
264 4 |c Ã2014 
300 |a 1 online resource (xxvii, 272 pages) :  |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  |b PDF  |2 rda 
490 1 |a The expert's voice in .NET 
500 |a Includes index. 
588 0 |a Online resource; title from PDF title page (SpringerLink, viewed February 19, 2015). 
520 |a LINQ represents a paradigm shift for developers used to an imperative/object oriented programming style, because LINQ draws on functional programming principles. Thinking in LINQ addresses the differences between these two by providing a set of succinct recipes arranged in several groups, including: Basic and extended LINQ operators Text processing Loop refactoring Monitoring code health Reactive Extensions (Rx.NET) Building domain-specific languages Using the familiar "recipes" approach, Thinking in LINQ shows you how to approach building LINQ-based solutions, how such solutions are different from what you already know, and why they?re better. The recipes cover a wide range of real-world problems, from using LINQ to replace existing loops, to writing your own Swype-like keyboard entry routines, to finding duplicate files on your hard drive. The goal of these recipes is to get you "thinking in LINQ," so you can use the techniques in your own code to write more efficient and concise data-intensive applications. 
505 0 |a At a Glance; Introduction; Chapter 1: Thinking Functionally; 1-1. Understanding Functional Programming; 1-2. Using Func in C# to Represent Functions; 1-3. Using Various Types of Functions; Generator Functions; Statistical Functions; Projector Functions; Filters; 1-4. Understanding the Benefits of Functional Programming; Composability; Lazy Evaluation; Immutability; Parallelizable; Declarative; 1-5. Getting LINQPad; Chapter 2: Series Generation; 2-1. Math and Statistics: Finding the Dot Product of Two Vectors; Problem; Solution; How It Works. 
505 8 |a 2-2. Math and Statistics: Generating Pythagorean TriplesProblem; Solution; How It Works; 2-3. Math and Statistics: Finding a Weighted Sum; Problem; Solution; How It Works; 2-4. Math and Statistics: Finding the Percentile for Each Element in an Array of Numbers; Problem; Solution; How It Works; 2-5. Math and Statistics: Finding the Dominator in an Array; Problem; Solution; How It Works; 2-6. Math and Statistics: Finding the Minimum Number of Currency Bills Required for a Given Amount; Problem; Solution; How It Works; 2-7. Math and Statistics: Finding Moving Averages; Problem; Solution. 
505 8 |a How It Works2-8. Math and Statistics: Finding a Cumulative Sum; Problem; Solution; How It Works; 2-9. Recursive Series and Patterns: Generating Recursive Structures by Using L-System Grammar; Problem; Solution; How It Works; 2-10. Recursive Series and Patterns Step-by-Step Growth of Algae; Problem; Solution; How It Works; 2-11. Recursive Series and Patterns: Generating Logo Commands to Draw a Koch Curve; Problem; Solution; How It Works; 2-12. Recursive Series and Patterns: Generating Logo Commands to Draw a Sierpinski Triangle; Problem; Solution; How It Works. 
505 8 |a 2-13. Recursive Series and Patterns: Generating Fibonacci Numbers Nonrecursively (Much Faster)Problem; Solution; How It Works; 2-14. Recursive Series and Patterns: Generating Permutations; Problem; Solution; How It Works; 2-15. Recursive Series and Patterns: Generating a Power Set of a Given Set; Problem; Solution; How It Works; 2-16. Collections: Picking Every n)th Element; Problem; Solution; How It Works; 2-17. Collections: Finding the Larger or Smaller of Several Sequences at Each Index; Problem; Solution; How It Works. 
505 8 |a 2-18. Number Theory: Generating Armstrong Numbers and Similar Number SequencesProblem; Solution; How It Works; 2-19. Number Theory: Generating Pascal's Triangle Nonrecursively; Problem; Solution; How It Works; 2-20. Game Design: Finding All Winning Paths in an Arbitrary Tic-Tac-Toe Board; Problem; Solution; How It Works; 2-21. Series in Game Design: Solving Go Figure; Problem; Solution; How It Works; 2-22. Miscellaneous Series: Finding Matching Pairs from Two Unsorted Collections; Problem; Solution; How It Works; 2-23. Miscellaneous Series: Using a Lookup-Based Approach; Problem; Solution. 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
630 0 0 |a Microsoft LINQ. 
630 0 0 |a Microsoft .NET Framework. 
630 0 7 |a Microsoft LINQ  |2 fast 
630 0 7 |a Microsoft .NET Framework  |2 fast 
650 7 |a COMPUTERS  |x Programming  |x Microsoft Programming.  |2 bisacsh 
653 0 0 |a computerwetenschappen 
653 0 0 |a computer sciences 
653 1 0 |a Information and Communication Technology (General) 
653 1 0 |a Informatie- en communicatietechnologie (algemeen) 
773 0 |t Springer eBooks 
776 0 8 |i Printed edition:  |z 9781430268451 
830 0 |a Expert's voice in .NET. 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781430268444/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a Askews and Holts Library Services  |b ASKH  |n AH29639979 
938 |a Books 24x7  |b B247  |n bks00077625 
938 |a EBL - Ebook Library  |b EBLB  |n EBL1964744 
938 |a EBSCOhost  |b EBSC  |n 921546 
938 |a ProQuest MyiLibrary Digital eBook Collection  |b IDEB  |n cis30247175 
938 |a YBP Library Services  |b YANK  |n 12230737 
994 |a 92  |b IZTAP