Giter Site home page Giter Site logo

delay's Introduction

Deprecated

This project is deprecated, and will not be updated in future. Memo is a complete replacement for its functionality, and is better-tested, -documented, and -spoken.

Delay

This is a Swift microframework which implements a lazily-evaluated memoizing wrapper type.

It’s a bit like a promise.

Why not just use a closure?

  • Closures do not automatically memoize; Delay will evaluate zero or one times, whereas closures will evaluate every time they are called.
  • Closures are currently subject to non-fixed multi-payload enum layout errors; since Delay is a class, it does not cause these problems for enum layout.

Use

func expensiveComputation() -> Int
let delayedResult = delay(expensiveComputation())
let actualResult = delay.force() // explicitly force it
let otherActualResult: Int = delay // use the implicit __conversion

See Delay.swift for more details.

Integration

  1. Add this repo as a submodule in e.g. External/Delay:

     git submodule add https://github.com/robrix/Delay.git External/Delay
    
  2. Drag Delay.xcodeproj into your .xcworkspace/.xcodeproj.

  3. Add Delay.framework to your target’s Link Binary With Libraries build phase.

  4. You may also want to add a Copy Files phase which copies Delay.framework (and any other framework dependencies you need) into your bundle’s Frameworks directory. If your target is a framework, you may instead want the client app to include Delay.framework.

delay's People

Contributors

robrix avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.