Search Results - "functional programming"
Suggested Topics within your search.
Suggested Topics within your search.
- Development 11
- Application software 10
- Functional programming (Computer science) 9
- Computer programming 5
- Data processing 5
- Mathematical models 5
- computer programming 5
- Functional programming languages 3
- F♯ (Computer program language) 3
- Java (Computer program language) 3
- Scala (Computer program language) 3
- Algorithms 2
- C++ (Computer program language) 2
- Computer science 2
- ERLANG (Computer program language) 2
- Electronic Data Processing 2
- Elixir (Computer program language) 2
- Finance 2
- Haskell (Computer program language) 2
- Java 2
- Machine learning 2
- Mathematics 2
- Mobile apps 2
- Object-oriented programming (Computer science) 2
- Perl (Computer program language) 2
- Programming languages (Electronic computers) 2
- Python (Computer program language) 2
- R (Computer program language) 2
- Artificial Intelligence 1
- Artificial intelligence 1
Search alternatives:
- "functional programming" »
-
1
Trends in Functional Programming.
Published 2007Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
2
Trends in Functional Programming.
Published 2007Table of Contents: “…Front Cover; Preliminary Pages; Contents; Preface; Proving Termination Using Dependent Types: The Case of Xor-Terms; Proving the Correctness of Algorithmic Debugging for Functional Programs; Systematic Synthesis of Functions; A Purely Functional Implementation of ROBDDs in Haskell; Efficient Interpretation by Transforming Data Types and Patterns to Functions; Object-Oriented Programming in Dependent Type Theory; A Sharing Analysis for SAFE; Memory Usage Improvement Using Runtime Alias Detection; A Model of Functional Programming with Dynamic Compilation and Optimization.…”
Full text (MFA users only)
Electronic eBook -
3
ReasonML Quick Start Guide : Build Fast and Type-Safe React Applications That Leverage the JavaScript and OCaml Ecosystems.
Published 2019Subjects: “…Functional programming.…”
Full text (MFA users only)
Electronic eBook -
4
Trends in Functional Programming 10.
Published 2010Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
5
Trends in Functional Programming 4.
Published 2005Table of Contents: “…Contents; Preface; Chapter 1 Is It Time for Real-Time Functional Programming?; Chapter 2 Fsm-Hume is Finite State; Chapter 3 Camelot and Grail: Resource-Aware Functional Programming for the Jvm; Chapter 4 O'camelot: Adding Objects to a Resource-Aware Functional Language; Chapter 5 Static Single Information from a Functional Perspective; Chapter 6 Implementing Mobile Haskell; Chapter 7 Testing Scheme Programming Assignments Automatically; Chapter 8 Testing Reactive Systems with Gast.…”
Full text (MFA users only)
Electronic eBook -
6
Functional Programming Using F♯
Published 2013Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
7
Verified Functional Programming in Agda.
Published 2016Table of Contents: “…Intro -- Contents -- Preface -- 1. Functional Programming with the Booleans -- 2. Introduction to Constructive Proof -- 3. …”
Full text (MFA users only)
Electronic eBook -
8
Trends in functional programming. Vol. 5
Published 2006Subjects: “…Functional programming (Computer science) Congresses.…”
Full text (MFA users only)
Electronic Conference Proceeding eBook -
9
Functional programming in C♯ : classic programming techniques for modern projects /
Published 2011Table of Contents: “…Cover; Contents; Title; Copyright; About the Author; Credits; Introduction; Part I : Introduction to Functional Programming; Chapter 1 : A Look at Functional Programming History; What Is Functional Programming?…”
Full text (MFA users only)
Electronic eBook -
10
Hands-On Functional Programming in Rust : Build modular and reactive applications with functional programming techniques in Rust 2018.
Published 2018Table of Contents: “…Cover; Title Page; Copyright and Credits; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Functional Programming -- a Comparison; Technical requirements; Reducing code weight and complexity; Making generics more generic; Functions as values; Iterators; Compact legible expressions; Strict abstraction means safe abstraction; Scoped data binding; Algebraic datatypes; Mixing object-oriented programming and functional programming; Improving project architecture; File hierarchy, modules, and namespace design; Functional design patterns; Metaprogramming; Summary; Questions.…”
Full text (MFA users only)
Electronic eBook -
11
Initiation a la Programmation de l'analyse Numerique
Published 2012Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
12
Theory of computation
Published 2012Subjects: “…Functional programming languages.…”
Full text (MFA users only)
Electronic eBook -
13
Haskell High Performance Programming.
Published 2016Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
14
The book of F♯ : breaking free with managed functional programming /
Published 2014Full text (MFA users only)
Electronic eBook -
15
The Clojure workshop : a new, interactive approach to learning Clojure
Published 2020Subjects: “…Functional programming languages.…”
Full text (MFA users only)
Electronic eBook -
16
-
17
Mastering Elixir : build and scale concurrent, distributed, and fault-tolerant applications
Published 2018Table of Contents: “…Cover; Title Page; Copyright and Credits; Dedication; Packt Upsell; Contributors; Table of Contents; Preface; Chapter 1: Preparing for the Journey Ahead; Why functional programming?; Elixir and Erlang; Elixir's data types; Integers; Floats; Atoms; Booleans; Tuples; Lists; Maps; Binaries; Strings and charlists; Other types; Keyword lists; Ranges; MapSets; Pattern matching; Pattern matching on tuples; Pattern matching on lists; Pattern matching on maps; Pattern matching on binaries and strings; Functions and Modules; Anonymous functions; Modules and Named Functions…”
Full text (MFA users only)
Electronic eBook -
18
Learning concurrency in Kotlin : build highly efficient and robust applications
Published 2018Subjects: “…Functional programming (Computer science)…”
Full text (MFA users only)
Electronic eBook -
19
-
20
Functional Python programming : discover the power of functional programming, generator functions, lazy evaluation, the built-in itertools library, and monads /
Published 2018Table of Contents: “…Cover -- Copyright and Credits -- Packt Upsell -- Contributors -- Table of Contents -- Preface -- Chapter 1: Understanding Functional Programming -- Identifying a paradigm -- Subdividing the procedural paradigm -- Using the functional paradigm -- Using a functional hybrid -- Looking at object creation -- The stack of turtles -- A classic example of functional programming -- Exploratory data analysis -- Summary -- Chapter 2: Introducing Essential Functional Concepts -- First-class functions -- Pure functions -- Higher-order functions -- Immutable data -- Strict and non-strict evaluation -- Recursion instead of an explicit loop state -- Functional type systems -- Familiar territory -- Learning some advanced concepts -- Summary -- Chapter 3: Functions, Iterators, and Generators -- Writing pure functions -- Functions as first-class objects -- Using strings -- Using tuples and named tuples -- Using generator expressions -- Exploring the limitations of generators -- Combining generator expressions -- Cleaning raw data with generator functions -- Using lists, dicts, and sets -- Using stateful mappings -- Using the bisect module to create a mapping -- Using stateful sets -- Summary -- Chapter 4: Working with Collections -- An overview of function varieties -- Working with iterables -- Parsing an XML file -- Parsing a file at a higher level -- Pairing up items from a sequence -- Using the iter() function explicitly -- Extending a simple loop -- Applying generator expressions to scalar functions -- Using any() and all() as reductions -- Using len() and sum() -- Using sums and counts for statistics -- Using zip() to structure and flatten sequences -- Unzipping a zipped sequence -- Flattening sequences -- Structuring flat sequences -- Structuring flat sequences -- an alternative approach -- Using reversed() to change the order.…”
Full text (MFA users only)
Electronic eBook