• Complain

Samuel Urbanowicz - Kotlin Standard Library Cookbook

Here you can read online Samuel Urbanowicz - Kotlin Standard Library Cookbook full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2018, publisher: Packt, genre: Computer. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

No cover
  • Book:
    Kotlin Standard Library Cookbook
  • Author:
  • Publisher:
    Packt
  • Genre:
  • Year:
    2018
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Kotlin Standard Library Cookbook: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Kotlin Standard Library Cookbook" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

This book explores the valuable standard libraries, showing you how to use them to write succinct code. Filled with short and easy-to -follow solutions, youll see how to get optimal performance from your Kotlin code.

Samuel Urbanowicz: author's other books


Who wrote Kotlin Standard Library Cookbook? Find out the surname, the name of the author of the book and a list of all author's works by series.

Kotlin Standard Library Cookbook — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Kotlin Standard Library Cookbook" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Kotlin Standard Library Cookbook Master the powerful Kotlin standard library - photo 1
Kotlin Standard Library Cookbook
Master the powerful Kotlin standard library through practical code examples
Samuel Urbanowicz

BIRMINGHAM - MUMBAI Kotlin Standard Library Cookbook Copyright 2018 Packt - photo 2

BIRMINGHAM - MUMBAI
Kotlin Standard Library Cookbook

Copyright 2018 Packt Publishing

All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews.

Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the author, nor Packt Publishing or its dealers and distributors, will be held liable for any damages caused or alleged to have been caused directly or indirectly by this book.

Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information.

Commissioning Editor: Richa Tripathi
Acquisition Editor: Chaitanya Nair
Content Development Editor: Akshada Iyer
Technical Editor: Abhishek Sharma
Copy Editor: Safis Editing
Project Coordinator: Prajakta Naik
Proofreader: Safis Editing
Indexer: Tejal Daruwale Soni
Graphics: Jisha Chirayil
Production Coordinator: Aparna Bhagat

First published: July 2018

Production reference: 1260718

Published by Packt Publishing Ltd.
Livery Place
35 Livery Street
Birmingham
B3 2PB, UK.

ISBN 978-1-78883-766-8

www.packtpub.com


"I have no special talent. I am only passionately curious."
- A. Einstein
I dedicate the book to all curious souls most of all to you, Agat.
maptio Mapt is an online digital library that gives you full access to over - photo 3
mapt.io

Mapt is an online digital library that gives you full access to over 5,000 books and videos, as well as industry leading tools to help you plan your personal development and advance your career. For more information, please visit our website.

Why subscribe?
  • Spend less time learning and more time coding with practical eBooks and Videos from over 4,000 industry professionals

  • Improve your learning with Skill Plans built especially for you

  • Get a free eBook or video every month

  • Mapt is fully searchable

  • Copy and paste, print, and bookmark content

PacktPub.com

Did you know that Packt offers eBook versions of every book published, with PDF and ePub files available? You can upgrade to the eBook version at www.PacktPub.com and as a print book customer, you are entitled to a discount on the eBook copy. Get in touch with us at service@packtpub.com for more details.

At www.PacktPub.com , you can also read a collection of free technical articles, sign up for a range of free newsletters, and receive exclusive discounts and offers on Packt books and eBooks.

Contributors
About the author

Samuel Urbanowicz is an experienced software engineer skilled in mobile applications and backend development. A fan of modern programming languages, he has been using Kotlin since its beginning. He's always curious to dive into technologies. He is especially passionate about machine learning. Samuel believes that the Kotlin language has great potential for multiplatform development. He has work experience in both big corps and small start-ups. He is an active contributor to open source projects.

I would like to thank the mentors who inspired me along my programming adventures. I wouldn't have the same passion for programming if not for the wisdom I learned from you:
"Coding must be fun, otherwise we are doing it wrong!". I am also grateful to the reviewers who made the book better. This book could not have been written without you.
About the reviewer

Miosz Pacholczyk is a software developer with 5 years of commercial experience in Java. He worked on B2B software used by leading manufacturers of automotive and construction industries. He graduated from the University of Warsaw.

Packt is searching for authors like you

If you're interested in becoming an author for Packt, please visit authors.packtpub.com and apply today. We have worked with thousands of developers and tech professionals, just like you, to help them share their insight with the global tech community. You can make a general application, apply for a specific hot topic that we are recruiting an author for, or submit your own idea.

Preface

The primary aim of Kotlin Standard Library Cookbook is to help you dive into advanced language concepts and features as fast as possible in a friendly way. It covers a wide range of general programming problems at varying difficulty levels, including design patterns, functional programming, data processing, and more. The book consists of recipes that present a specific problem and give a step-by-step explanation of how to approach it effectively. All the presented features of the standard library are well explained, allowing you to discover them with ease.

This book will help software developers switch to Kotlin with ease and integrate it seamlessly into the existing JVM and JavaScript projects. Examples included in the book can easily be implemented in your own projects. You can also get the ready-made solutions from the book's GitHub repository if you prefer to follow and test the recipes in your favorite IDE. Once you have completed the book, you should have expert knowledge and insight into the language's advanced concepts, allowing you to address your daily programming challenges efficiently.

Who this book is for

The book is ideal for those who are already familiar with the basics of Kotlin and want to discover how to effectively solve day-to-day programming problems with state-of-the-art solutions, utilizing advanced language and standard library features. Experienced programmers who are willing to switch to Kotlin from other languages, especially Java, Scala, and JavaScript, will find it helpful as well.

What this book covers

, Ranges, Progressions, and Sequences, presents the concept of Kotlin ranges and sequences. It shows how to approach common algorithmic problems by defining custom sequences and how to define ranges for custom classes.

, Expressive Functions and Adjustable Interfaces, shows how to approach designing functions and interfaces using the language's built-in features. The chapter explains how to implement clean, reusable functions, and scalable interfaces containing default implementations. The recipes also cover other features of the language, such as inlining closures, destructuring variables, reified type parameters, and other useful tips that help design more flexible and natural code.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Kotlin Standard Library Cookbook»

Look at similar books to Kotlin Standard Library Cookbook. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Kotlin Standard Library Cookbook»

Discussion, reviews of the book Kotlin Standard Library Cookbook and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.