• Complain

Hartmann Mads - Professional Scala

Here you can read online Hartmann Mads - Professional Scala full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Birmingham;England, year: 2018, publisher: Packt Publishing, genre: Home and family. 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.

Hartmann Mads Professional Scala

Professional Scala: summary, description and annotation

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

If your application source code is overly verbose, it can be a nightmare to maintain. Write concise and expressive, type-safe code in an environment that lets you build for the JVM, browser, and more.

Key Features

  • Expert guidance that shows you to efficiently use both object-oriented and functional programming techniques
    • Understand functional programming libraries, such as Cats and Scalaz, and use them to augment your Scala development
    • Perfectly balances theory and hands-on exercises, assessments, and activities

      Book Description

      This book teaches you how to build and contribute to Scala programs, recognizing common patterns and techniques used with the language. Youll learn how to write concise, functional code with Scala. After an introduction to core concepts, syntax, and writing example applications with scalac, youll learn about the Scala Collections API and how the language handles type safety via static types out-of-the-box. Youll...

  • Hartmann Mads: author's other books


    Who wrote Professional Scala? Find out the surname, the name of the author of the book and a list of all author's works by series.

    Professional Scala — 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 "Professional Scala" 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
    Professional Scala

    Professional Scala

    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 authors, nor Packt Publishing, and its dealers and distributors will be held liable for any damages caused or alleged to be 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.

    Acquisitions Editor: Aditya Date

    Development Editor: Murtaza Haamid

    Production Coordinator: Vishal Pawar

    First published: July 2018

    Production reference: 1300718

    Published by Packt Publishing Ltd.

    Livery Place, 35 Livery Street

    Birmingham B3 2PB, UK.

    ISBN: 978-1-78953-383-5

    www.packtpub.com

    httpsmaptpacktpubcom Mapt is an online digital library that gives you - photo 1

    https://mapt.packtpub.com/

    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 https://mapt.packtpub.com/ 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 > 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 Authors

    Mads Hartmann is a software engineer with a fondness for automation and programming languages, especially statically typed functional ones. He holds a masters degree in computer science from the University of Copenhagen and he is currently working as a full-stack engineer at Family.

    He is active in the Copenhagen developer scene and he has organized a meetup group for people interested in Scala and co-organized a meetup group for people generally interested in programming languages.

    Ruslan Shevchenko is a system architect and a software developer who is focused on building reliable software systems. He specializes in programming languages and frameworks such as Scala, Java (J2SE, J2EE, Android), O/R Mapping, C++ , C, JavaScript, Perl, Tcl, and TermWare.

    The domains he specializes in are telecommunications, OSS/billing systems, finance, code analysis, social integration, system utilities architecture domains, large-scale software systems, and distributed processing.

    In terms of architecture, his specialist domains are large-scale software systems and distributed processing.

    Preface

    Scala is a type-safe JVM language that incorporates both object-oriented and functional programming into an extremely concise, logical, and extraordinarily powerful language. Some may be surprised to know that Scala is not quite as new as they may have thought, having first been introduced in 2003. However, it is in the past few years in particular that Scala has begun to develop a significant following.

    This book enables you to build and contribute to Scala programs, recognizing common patterns and techniques used with the language.

    This is a practical book which provides you with a lot of hands-on experience with Scala.

    Who This Book Is For

    This book is for developers who are interested in learning about the advanced features of the Scala language. Basic knowledge of the Scala programming language is required to follow the instructions in this book.

    What This Book Covers

    , Setting up the Development Environment , shows you how to set up your development environment. You'll learn the basics of Scala, such as what the simple Scala program looks like and what a typical developer flow is. It'll also cover some aspects of testing your Scala program by using unit testing.

    , Basic Language Features , covers classes and objects, traits, pattern matching, case class, and so on. You'll also implement your chatbot application by applying the object oriented concepts.

    , Functions , covers functional programming with Scala and how object- oriented and functional approaches complete each other. You'll identify generic classes and also identify how to create user-defined pattern matching and why is it useful.

    , Scala Collections , teaches you how to work with lists. Then, it covers some more relevant data structures. Finally, you'll look at how collections relate to monads and how you can use that knowledge to make some powerful abstractions in your code.

    , Scala Type System , covers the type system and polymorphism. It'll also enable you to identify the different types of variance, which provides a way to constrain parameterized types. Then, you'll cover some advanced types such as abstract type members and option.

    , Implicits , covers implicit parameters and implicit conversions. You'll be learning about how they work, how to use them, and what kind of benefits and perils they provide.

    , Functional Idioms , covers the core concepts of functional programming like Pure functions, immutability, and higher-order functions. It'll also cover two popular functional programming libraries called Cats and Doobie, and use them to write some interesting programs.

    , Domain Specifc Languages , covers how Scala makes it possible to write powerful DSLs by providing a few interesting language features. Then, it'll cover a DSL that you'll very likely be using if you're going to work with Scala professionally.

    Finally, you'll implement your own DSL.

    What You Need for This Book

    The minimum hardware requirements are as follows:

    • Intel Core i3 processor
    • 2 GB RAM
    • An Internet connection

    Please ensure you have the following software installed on your machine:

    • Microsoft Windows 10/8/7 (64 bit)
    • JDK 8
    • IntelliJ + Scala plugin

    Mac

    • macOS 10.5 or higher (64-bit)
    • JDK 8
    • IntelliJ + Scala plugin

    Linux

    • Linux 64-bit
    • KDE, GNOME, or Unity DE desktop
    • JDK 8
    • IntelliJ + Scala plugin
    Conventions

    In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.

    Next page
    Light

    Font size:

    Reset

    Interval:

    Bookmark:

    Make

    Similar books «Professional Scala»

    Look at similar books to Professional Scala. 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 «Professional Scala»

    Discussion, reviews of the book Professional Scala 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.