Dieses Angebot wurde verkauft am Di, 23. Sep um 11:09.
Funktionale Programmierung in C++: So verbessern Sie Ihre C++ Programme mit Funktion...
Verkauft
Funktionale Programmierung in C++: So verbessern Sie Ihre C++ Programme mit Funktion...
US $11,99US $11,99
Di, 23. Sep, 11:09Di, 23. Sep, 11:09

Funktionale Programmierung in C++: So verbessern Sie Ihre C++ Programme mit Funktion...

Goodwill Industries South Florida
(173621)
Angemeldet als gewerblicher Verkäufer
US $11,99
Ca.CHF 9,61
Artikelzustand:
Akzeptabel
    Versand:
    Kostenlos Standard Shipping.
    Standort: Fort Lauderdale, Florida, USA
    Lieferung:
    Lieferung zwischen Di, 14. Okt und Mo, 20. Okt nach 94104 bei heutigem Zahlungseingang
    Liefertermine - wird in neuem Fenster oder Tab geöffnet berücksichtigen die Bearbeitungszeit des Verkäufers, die PLZ des Artikelstandorts und des Zielorts sowie den Annahmezeitpunkt und sind abhängig vom gewählten Versandservice und dem ZahlungseingangZahlungseingang - wird ein neuem Fenster oder Tab geöffnet. Insbesondere während saisonaler Spitzenzeiten können die Lieferzeiten abweichen.
    Rücknahme:
    Keine Rücknahme.
    Zahlungen:
         Diners Club

    Sicher einkaufen

    eBay-Käuferschutz
    Geld zurück, wenn etwas mit diesem Artikel nicht stimmt. Mehr erfahreneBay-Käuferschutz - wird in neuem Fenster oder Tab geöffnet
    Der Verkäufer ist für dieses Angebot verantwortlich.
    eBay-Artikelnr.:376500270069
    Zuletzt aktualisiert am 22. Sep. 2025 21:14:31 MESZAlle Änderungen ansehenAlle Änderungen ansehen

    Der gesamte Erlös nach Abzug der Kosten geht an Goodwill Industries of South Florida

    Goodwill Industries of South Florida trains and employs people with physical and mental barriers
    • Offizielles eBay für Charity-Angebot. Mehr erfahren
    • Verkauf zugunsten einer geprüften gemeinnützigen Partnerorganisation.

    Artikelmerkmale

    Artikelzustand
    Akzeptabel: Buch mit deutlichen Gebrauchsspuren. Der Einband kann einige Beschädigungen aufweisen, ...
    Release Year
    2018
    Book Title
    Functional Programming in C++: How to improve your C++ program...
    ISBN
    9781617293818
    Kategorie

    Über dieses Produkt

    Product Identifiers

    Publisher
    Manning Publications Co. LLC
    ISBN-10
    1617293814
    ISBN-13
    9781617293818
    eBay Product ID (ePID)
    239742823

    Product Key Features

    Number of Pages
    320 Pages
    Language
    English
    Publication Name
    Functional Programming in C++
    Publication Year
    2018
    Subject
    Programming / General, Programming Languages / C++, Programming Languages / C
    Type
    Textbook
    Author
    Ivan Cukic
    Subject Area
    Computers
    Format
    Trade Paperback

    Dimensions

    Item Height
    0.8 in
    Item Weight
    21.2 Oz
    Item Length
    9.2 in
    Item Width
    7.3 in

    Additional Product Features

    Intended Audience
    Scholarly & Professional
    LCCN
    2018-377502
    Illustrated
    Yes
    Synopsis
    Functional programming is becoming a required skill for allprogrammers, and for good reason. The functional style ofprogramming lets developers to write more concise code, which tendsto have fewer bugs. Functional Programming in C++ teaches developers the practical sideof functional programming and what tools C++ provides to developsoftware in the functional style. KEY FEATURES* Practical-guide* Hands-on examples* Step-by-step instructions This book is for developers who have worked professionally with C++for 2 or more years. ABOUT THE TECHNOLOGYBroadly speaking, Functional Programming is a style of programmingwhere the main programming building blocks are functions, asopposed to objects and procedures. AUTHOR BIOIvan cukic has been teaching modern C++ techniques and functionalprogramming at the Faculty of Mathematics in Belgrade for 6 years and hasbeen using C++ for more than 15 years. He has been researching functionalprogramming in C++ before and during his PhD studies, and uses thetechniques in real-world projects. He is one of the core developers in KDE,the largest free/libre open source C++ project., Functional programming is becoming a required skill for all programmers, and for good reason. The functional style of programming lets developers to write more concise code, which tends to have fewer bugs. Functional Programming in C++ teaches developers the practical side of functional programming and what tools C++ provides to develop software in the functional style., Functional programming is becoming a required skill for all programmers, and for good reason. The functional style of programming lets developers to write more concise code, which tends to have fewer bugs. Functional Programming in C++ teaches developers the practical side of functional programming and what tools C++ provides to develop software in the functional style. KEY FEATURES * Practical-guide * Hands-on examples * Step-by-step instructions This book is for developers who have worked professionally with C++ for 2 or more years. ABOUT THE TECHNOLOGY Broadly speaking, Functional Programming is a style of programming where the main programming building blocks are functions, as opposed to objects and procedures. AUTHOR BIO Ivan cukic has been teaching modern C++ techniques and functional programming at the Faculty of Mathematics in Belgrade for 6 years and has been using C++ for more than 15 years. He has been researching functional programming in C++ before and during his PhD studies, and uses the techniques in real-world projects. He is one of the core developers in KDE, the largest free/libre open source C++ project., Summary Functional Programming in C++ teaches developers the practical side of functional programming and the tools that C++ provides to develop software in the functional style. This in-depth guide is full of useful diagrams that help you understand FP concepts and begin to think functionally. Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications. About the Technology Well-written code is easier to test and reuse, simpler to parallelize, and less error prone. Mastering the functional style of programming can help you tackle the demands of modern apps and will lead to simpler expression of complex program logic, graceful error handling, and elegant concurrency. C++ supports FP with templates, lambdas, and other core language features, along with many parts of the STL. About the Book Functional Programming in C++ helps you unleash the functional side of your brain, as you gain a powerful new perspective on C++ coding. You'll discover dozens of examples, diagrams, and illustrations that break down the functional concepts you can apply in C++, including lazy evaluation, function objects and invokables, algebraic data types, and more. As you read, you'll match FP techniques with practical scenarios where they offer the most benefit. What's inside Writing safer code with no performance penalties Explicitly handling errors through the type system Extending C++ with new control structures Composing tasks with DSLs About the Reader Written for developers with two or more years of experience coding in C++. About the Author Ivan cukic is a core developer at KDE and has been coding in C++ since 1998. He teaches modern C++ and functional programming at the Faculty of Mathematics at the University of Belgrade. Table of Contents Introduction to functional programming Getting started with functional programming Function objects Creating new functions from the old ones Purity: Avoiding mutable state Lazy evaluation Ranges Functional data structures Algebraic data types and pattern matching Monads Template metaprogramming Functional design for concurrent systems Testing and debugging
    LC Classification Number
    QA76.62

    Artikelbeschreibung des Verkäufers

    Info zu diesem Verkäufer

    Goodwill Industries South Florida

    99,4% positive Bewertungen626 Tsd. Artikel verkauft

    Mitglied seit Jan 2011
    Angemeldet als gewerblicher Verkäufer
    Welcome to my eBay Store. Please add me to your list of favorite sellers and visit often. Thank you for your business.
    Shop besuchenKontakt

    Detaillierte Verkäuferbewertungen

    Durchschnitt in den letzten 12 Monaten
    Genaue Beschreibung
    4.9
    Angemessene Versandkosten
    5.0
    Lieferzeit
    5.0
    Kommunikation
    5.0

    Verkäuferbewertungen (195'437)

    Alle Bewertungen ansehen