Skip to content

Instantly share code, notes, and snippets.

@wpK
wpK / ReSwiftEffectsExperiment.swift
Last active June 13, 2016 17:00 — forked from Ben-G/ReSwiftEffectsExperiment.swift
ReSwift Allow For Effects - Experiment
//: Playground - noun: a place where people can play
import Cocoa
protocol Action {}
final class Store<State> {
typealias Reducer = (Action, State) -> (State, [Any])
var state: State