Cargando…

Swift 4 recipes : hundreds of useful hand-picked code snippets /

Get the most out of Swift 4 with this carefully compiled collection of select code snippets designed to solve everyday coding problems. This book features the Apress easy-to-use recipe format, with step-by-step instructions, and a no-fuss approach. You'll explore a wide range of topics, all nea...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Zafirópulos, Yanis (Autor)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: [New York, NY] : Apress, [2019]
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)

MARC

LEADER 00000cam a2200000 i 4500
001 OR_on1080079814
003 OCoLC
005 20231017213018.0
006 m o d
007 cr cnu---unuuu
008 181222s2019 nyu o 000 0 eng d
040 |a EBLCP  |b eng  |e rda  |e pn  |c EBLCP  |d GW5XE  |d CAUOI  |d OCLCF  |d YDX  |d YDXIT  |d UMI  |d LEAUB  |d UKMGB  |d TOH  |d TEFOD  |d OH1  |d ESU  |d AU@  |d LQU  |d OCLCQ  |d LEATE  |d OCLCQ  |d VT2  |d OCLCQ  |d OCLCO  |d OCLCQ 
015 |a GBB935088  |2 bnb 
016 7 |a 019214880  |2 Uk 
019 |a 1079434861  |a 1085012230  |a 1086474530  |a 1096834870  |a 1099527416  |a 1105193731  |a 1122813936  |a 1156400833  |a 1162756865  |a 1192338539  |a 1240519878 
020 |a 9781484241820  |q (electronic book) 
020 |a 1484241827  |q (electronic book) 
020 |a 9781484241837  |q (print) 
020 |a 1484241835 
020 |a 9781484248423  |q (print) 
020 |a 1484248422 
020 |z 9781484241813 
020 |z 1484241819 
024 7 |a 10.1007/978-1-4842-4182-0  |2 doi 
024 8 |a 10.1007/978-1-4842-4 
029 1 |a AU@  |b 000064815654 
029 1 |a AU@  |b 000065065105 
029 1 |a AU@  |b 000067501349 
029 1 |a CHNEW  |b 001074025 
029 1 |a CHVBK  |b 579468348 
029 1 |a UKMGB  |b 019214880 
029 1 |a AU@  |b 000073932006 
035 |a (OCoLC)1080079814  |z (OCoLC)1079434861  |z (OCoLC)1085012230  |z (OCoLC)1086474530  |z (OCoLC)1096834870  |z (OCoLC)1099527416  |z (OCoLC)1105193731  |z (OCoLC)1122813936  |z (OCoLC)1156400833  |z (OCoLC)1162756865  |z (OCoLC)1192338539  |z (OCoLC)1240519878 
037 |a CL0501000024  |b Safari Books Online 
037 |a 1CC1FC4D-6251-4723-9C9E-E3D7104143EE  |b OverDrive, Inc.  |n http://www.overdrive.com 
050 4 |a QA76.73.S95  |b Z34 2019 
072 7 |a UMQ  |2 bicssc 
072 7 |a COM051370  |2 bisacsh 
072 7 |a UMQ  |2 thema 
072 7 |a ULH  |2 thema 
082 0 4 |a 005.1  |2 23 
049 |a UAMI 
100 1 |a Zafirópulos, Yanis,  |e author. 
245 1 0 |a Swift 4 recipes :  |b hundreds of useful hand-picked code snippets /  |c c Yanis Zafirópulos. 
264 1 |a [New York, NY] :  |b Apress,  |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 
347 |a text file 
347 |b PDF 
588 0 |a Online resource; title from digital title page (viewed on February 18, 2019). 
520 |a Get the most out of Swift 4 with this carefully compiled collection of select code snippets designed to solve everyday coding problems. This book features the Apress easy-to-use recipe format, with step-by-step instructions, and a no-fuss approach. You'll explore a wide range of topics, all neatly organized according to the language's own core elements and building blocks. You'll review common topics such as conditionals, loops, functions, classes, closures, and arrays. This book also includes recipes to some more advanced problems found in files, system programming, and algorithms. With Swift 4 Recipes, your programming problems are easily resolved, without wading through paragraphs of text. 
505 0 |a Intro; Table of Contents; About the Author; About the Technical Reviewer; Acknowledgments; Part I: Beginner; Chapter 1: Introduction; 1-1. Getting Familiar with Swift; Problem; Solution; How It Works; Executing It; Compiling It; 1-2. Scripting in Swift; Problem; Solution; How It Works; 1-3. Summary; Chapter 2: Basics; 2-1. Create a Hello World; Problem; Solution; How It Works; 2-2. Declare variables; Problem; Solution; How It Works; 2-3. Declare constants; Problem; Solution; How It works; 2-4. Declare multiple variables; Problem; Solution; How It Works 
505 8 |a 2-5. Declare Unicode constants and variablesProblem; Solution; How It Works; 2-6. Declare a range; Problem; Solution; How It Works; 2-7. Define an enumeration type; Problem; Solution; How It Works; 2-8. Define a type alias; Problem; Solution; How It Works; 2-9. Use semicolons; Problem; Solution; How It Works; 2-10. Use comments; Problem; Solution; How It Works; 2-11. Summary; Chapter 3: Conditionals; 3-1. Write an if statement; Problem; Solution; How It Works; 3-2. Write an if/else statement; Problem; Solution; How It Works; 3-3. Write multiple if/else/if statements; Problem; Solution 
505 8 |a How It Works3-4. Write a switch statement; Problem; Solution; How It Works; 3-5. Write a switch statement with intervals; Problem; Solution; How It Works; 3-6. Write a switch statement with enumeration values; Problem; Solution; How It Works; 3-7. Write a switch statement with compound cases; Problem; Solution; How It Works; 3-8. Write a switch statement with tuples; Problem; Solution; How It Works; 3-9. Write a switch statement with value bindings; Problem; Solution; How It Works; 3-10. Use the ternary conditional operator; Problem; Solution; How It Works 
505 8 |a 3-11. Use the nil coalescing operatorProblem; Solution; How It Works; 3-12. Use the logical and operator; Problem; Solution; How It Works; 3-13. Use the logical not operator; Problem; Solution; How It Works; 3-14. Use the logical or operator; Problem; Solution; How It Works; 3-15. Use the logical xor operator; Problem; Solution; How It Works; 3-16. Summary; Chapter 4: Loops; 4-1. Write a for loop; Problem; Solution; How It Works; 4-2. Write a while loop; Problem; Solution; How It Works; 4-3. Write a repeat-while loop; Problem; Solution; How It Works; 4-4. Summary; Chapter 5: Functions 
505 8 |a 5-1. Define and call a functionProblem; Solution; How It Works; 5-2. Define and call a function with arguments; Problem; Solution; How It Works; 5-3. Define and call a function with argument labels; Problem; Solution; How It Works; 5-4. Define and call a function without argument labels; Problem; Solution; How It Works; 5-5. Define and call a function with default parameter values; Problem; Solution; How It Works; 5-6. Define and call a function with return value; Problem; Solution; How It Works; 5-7. Define and call a function with multiple return values; Problem; Solution; How It Works 
590 |a O'Reilly  |b O'Reilly Online Learning: Academic/Public Library Edition 
650 0 |a Swift (Computer program language) 
650 6 |a Swift (Langage de programmation) 
650 7 |a Swift (Computer program language)  |2 fast  |0 (OCoLC)fst01922222 
776 0 8 |i Print version:  |a Zafirópulos, Yanis.  |t Swift 4 Recipes : Hundreds of Useful Hand-Picked Code Snippets.  |d Berkeley, CA : Apress L.P., ©2018  |z 9781484241813 
856 4 0 |u https://learning.oreilly.com/library/view/~/9781484241820/?ar  |z Texto completo (Requiere registro previo con correo institucional) 
938 |a ProQuest Ebook Central  |b EBLB  |n EBL5613430 
938 |a YBP Library Services  |b YANK  |n 15896335 
994 |a 92  |b IZTAP