null
Loading... Please wait...
FREE SHIPPING on All Unbranded Items LEARN MORE
Print This Page

Type-Driven Development with Idris

List Price: $49.99
SKU:
9781617293023
Quantity:
Minimum Purchase
25 unit(s)
  • Availability: Confirm prior to ordering
  • Branding: minimum 50 pieces (add’l costs below)
  • Check Freight Rates (branded products only)

Branding Options (v), Availability & Lead Times

  • 1-Color Imprint: $2.00 ea.
  • Promo-Page Insert: $2.50 ea. (full-color printed, single-sided page)
  • Belly-Band Wrap: $2.50 ea. (full-color printed)
  • Set-Up Charge: $45 per decoration
FULL DETAILS
  • Availability: Product availability changes daily, so please confirm your quantity is available prior to placing an order.
  • Branded Products: allow 10 business days from proof approval for production. Branding options may be limited or unavailable based on product design or cover artwork.
  • Unbranded Products: allow 3-5 business days for shipping. All Unbranded items receive FREE ground shipping in the US. Inquire for international shipping.
  • RETURNS/CANCELLATIONS: All orders, branded or unbranded, are NON-CANCELLABLE and NON-RETURNABLE once a purchase order has been received.
  • Product Details

    Author:
    Edwin Brady
    Format:
    Paperback
    Pages:
    480
    Publisher:
    Manning (April 7, 2017)
    Language:
    English
    ISBN-13:
    9781617293023
    ISBN-10:
    1617293024
    Weight:
    28.96oz
    Dimensions:
    7.38" x 9.25" x 1"
    File:
    Eloquence-SimonSchuster_06032026_P10163223_onix30_Complete-20260603.xml
    Folder:
    Eloquence
    List Price:
    $49.99
    Case Pack:
    14
    As low as:
    $44.99
    Publisher Identifier:
    P-SS
    Discount Code:
    G
    Pub Discount:
    37
    Imprint:
    Manning
  • Overview

    Summary

    Type-Driven Development with Idris, written by the creator of Idris, teaches you how to improve the performance and accuracy of your programs by taking advantage of a state-of-the-art type system. This book teaches you with Idris, a language designed to support type-driven development.

    Purchase of the print book includes a free eBook in PDF, Kindle, and ePub formats from Manning Publications.

    About the Technology

    Stop fighting type errors! Type-driven development is an approach to coding that embraces types as the foundation of your code - essentially as built-in documentation your compiler can use to check data relationships and other assumptions. With this approach, you can define specifications early in development and write code that's easy to maintain, test, and extend. Idris is a Haskell-like language with first-class, dependent types that's perfect for learning type-driven programming techniques you can apply in any codebase.

    About the Book

    Type-Driven Development with Idris teaches you how to improve the performance and accuracy of your code by taking advantage of a state-of-the-art type system. In this book, you'll learn type-driven development of real-world software, as well as how to handle side effects, interaction, state, and concurrency. By the end, you'll be able to develop robust and verified software in Idris and apply type-driven development methods to other languages.

    What's Inside

    • Understanding dependent types
    • Types as first-class language constructs
    • Types as a guide to program construction
    • Expressing relationships between data

    About the Reader

    Written for programmers with knowledge of functional programming concepts.

    About the Author

    Edwin Brady leads the design and implementation of the Idris language.

    Table of Contents

      PART 1 - INTRODUCTION

    1. Overview
    2. Getting started with Idris

      PART 2 - CORE IDRIS

    3. Interactive development with types
    4. User-defined data types
    5. Interactive programs: input and output processing
    6. Programming with first-class types
    7. Interfaces: using constrained generic types
    8. Equality: expressing relationships between data
    9. Predicates: expressing assumptions and contracts in types
    10. Views: extending pattern matching
    11. PART 3 - IDRIS AND THE REAL WORLD

    12. Streams and processes: working with infinite data
    13. Writing programs with state
    14. State machines: verifying protocols in types
    15. Dependent state machines: handling feedback and errors
    16. Type-safe concurrent programming