Search Results - function-((james programming) OR (names programming))

Search alternatives:

Refine Results
  1. 1

    Arduino sketches : tools and techniques for programming wizardry by Langbridge, James A.

    Published 2015
    Table of Contents: “…Functions --…”
    Full text (MFA users only)
    Electronic eBook
  2. 2

    Functional Python programming : discover the power of functional programming, generator functions, lazy evaluation, the built-in itertools library, and monads by Lott, Steven F.

    Published 2018
    Table 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
  3. 3

    Nominal sets : names and symmetry in computer science by Pitts, A. M. (Andrew M.)

    Published 2013
    Table of Contents: “…Cover; Contents; Preface; 0 Introduction; 0.1 Atomic names; 0.2 Support and freshness; 0.3 Abstract syntax with binders; 0.4 Name abstraction; 0.5 Orbit-finiteness; 0.6 Alternative formulations; 0.7 Prerequisites; 0.8 Notation; PART ONE THEORY; 1 Permutations; 1.1 The category of G-sets; 1.2 Products and coproducts; 1.3 Natural numbers; 1.4 Functions; 1.5 Power sets; 1.6 Partial functions; 1.7 Quotient sets; 1.8 Finite permutations; 1.9 Name symmetries; Exercises; 2 Support; 2.1 The category of nominal sets; 2.2 Products and coproducts; 2.3 Natural numbers; 2.4 Functions; 2.5 Power sets.…”
    Full text (MFA users only)
    Electronic eBook
  4. 4
  5. 5

    Functional grammar in Prolog : an integrated implementation for English, French, and Dutch by Dik, S. C. (Simon C.)

    Published 1992
    Table of Contents: “…3.1. Outline of the Functional Grammar generator4. Overall structure of the ProfGlot program -- 4.0. …”
    Full text (MFA users only)
    Electronic eBook
  6. 6

    Python : an Introduction to Programming. by Parker, James R.

    Published 2016
    Full text (MFA users only)
    Electronic eBook
  7. 7

    Database Design and SQL for DB2. by Cooper, James

    Published 2013
    Full text (MFA users only)
    Electronic eBook
  8. 8

    Assessing research-doctorate programs : a methodology study

    Published 2003
    Full text (MFA users only)
    Electronic eBook
  9. 9

    Drupal for Education and Elearning. by Robertson, James Gordon

    Published 2013
    Full text (MFA users only)
    Electronic eBook
  10. 10

    Mastering Elixir : build and scale concurrent, distributed, and fault-tolerant applications by Albuquerque, André, Caixinha, Daniel

    Published 2018
    Table 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
  11. 11

    Professional Scala : Combine Object-Oriented and Functional Programming to Build High-performance Applications. by Hartmann, Mads

    Published 2018
    Table of Contents: “…Objects, Classes, and TraitsObject; Classes; Equality and Case Classes; Pattern Matching; Traits; Self-Types; Special Classes; OO in Our Chatbot; Decoupling Logic and Environment; Sealed Traits and Algebraic Datatypes; Function Calls; Syntax Goodies; Named Parameters; Default Parameters; Currying Forms (Multiple Argument Lists); Special Magic Methods; Implementing + in CartesianPoint; Parameter-Passing Mode; By Value; By Name; By Need; Creating a Runnable Construction; Printing the log Argument to the Console and File; Summary; Functions; Functions; Function Values.…”
    Full text (MFA users only)
    Electronic eBook
  12. 12
  13. 13
  14. 14

    An essay on names and truth by Hinzen, Wolfram

    Published 2007
    Full text (MFA users only)
    Electronic eBook
  15. 15

    Comprehensive Ruby Programming. by Hudgens, Jordan

    Published 2017
    Table of Contents: “…Implementing a prime number counting algorithm -- How to code the power digit sum algorithm -- Implementing a humanize counting algorithm -- Implementing a date algorithm -- How to code a Fibonacci digit counter -- Implementing a permutation algorithm -- Implementing an amicable number algorithm -- Implementing a factorial algorithm -- Implementing an even Fibonacci number algorithm -- Implementing the least common multiple -- Summary -- Chapter 19: Machine Learning -- Big data analysis -- Basic decision tree implementation -- Addition of attributes -- Addition of training data and its values -- Calling the ID3 method -- Function of the train method -- Addition of the test method -- Setting up decision variables -- Print the results out -- Testing the program -- Advantage of decision trees over if ... else statements -- How to develop a big data analysis application in Ruby -- Summary -- Index.…”
    Full text (MFA users only)
    Electronic eBook
  16. 16

    Mastering Unit Testing Using Mockito and JUnit. by Acharya, Sujoy

    Published 2014
    Full text (MFA users only)
    Electronic eBook
  17. 17

    Anyone Can Code : The Art and Science of Logical Creativity. by Arya, Ali

    Published 2020
    Table of Contents: “…4.4 Combining Selection and Iteration -- 4.4.1 Guessing Game -- 4.4.2 Simple Calculator -- 4.5 Naming Conventions -- 4.5.1 #Define In C/C ++ -- Highlights -- End-of-Chapter Notes -- Chapter 5 Functions -- Overview -- 5.1 Defining and Using Functions -- 5.1.1 Returning From a Function -- 5.2 Functions in C/C++ -- 5.2.1 Void Main() -- 5.2.2 Void Hello() -- 5.2.3 Int Getdata() -- 5.3 Local and Global Variables -- 5.4 Function Parameters -- 5.4.1 Simple Board Game Simulator -- 5.4.2 Bmi Calculator -- 5.4.3 Prime Number Listing -- Highlights -- End-of-Chapter Notes -- Part 3 Structured Programming…”
    Full text (MFA users only)
    Electronic eBook
  18. 18

    Getting Started with Julia Programming. by Balbaert, Ivo

    Published 2015
    Table of Contents: “…Chapter 2: Variables, Types, and OperationsVariables, naming conventions, and comments; Types; Integers; Floating point numbers; Elementary mathematical functions and operations; Rational and complex numbers; Characters; Strings; Formatting numbers and strings; Regular expressions; Ranges and arrays; Other ways to create arrays; Some common functions for arrays; How to convert an array of chars to a string; Dates and times; Scope and constants; Summary; Chapter 3: Functions; Defining functions; Optional and keyword arguments; Anonymous functions; First-class functions and closures.…”
    Full text (MFA users only)
    Electronic eBook
  19. 19
  20. 20

    Programming language pragmatics by Scott, Michael Lee, 1959-

    Published 2006
    Table of Contents: “…Alternative Programming Models; Chapter 10. Functional Languages; 10.1 Historical Origins; 10.2 Functional Programming Concepts…”
    Full text (MFA users only)
    Electronic eBook