├── .gitattributes ├── .gitignore ├── README.md └── src └── FSharpSnippets ├── A Lazy fixed-point combinator.fsx ├── A simple Quine.fsx ├── Abstracting over 'M'.fsx ├── Actors acting as Lambdas.fsx ├── AssemblyInfo.fs ├── Async Choice.fsx ├── Bananas.fsx ├── Church numerals.fsx ├── Clojure atom memoization example.fsx ├── Clojure's Atoms.fsx ├── Countdown.fsx ├── Delimited continuations.fsx ├── Dining philosophers (Joinads).fsx ├── Eff via delimited continuations.fsx ├── Eff.fsx ├── Effects and Handlers.fsx ├── Equality Type.fsx ├── Erik Lippert's Comma Quibbling.fsx ├── Eternity2.fsx ├── Evens and Odds via Z3.fsx ├── FSharpSnippets.fsproj ├── FSharpSnippets.sln ├── Fixed-point finding function.fsx ├── From Löb's Theorem to Spreadsheet Evaluation (memoized).fsx ├── From Löb's Theorem to Spreadsheet Evaluation.fsx ├── Functional Unparsing SQL.fsx ├── Functional style Regex engine.fsx ├── Functor - Applicative - Monad.fsx ├── GC Friendly Fixpoint.fsx ├── Generic Collections, Type Classes and friends.fsx ├── Generic Numeric Literals and Compile time Peano arithmetic.fsx ├── HLists, Peano - Type-level computations.fsx ├── Hughes's CPSFuncList.fsx ├── Hughes's FuncList.fsx ├── Infinite sequences.fsx ├── Lazy Xml.fsx ├── Lazy fixed-point and Infinite Streams.fsx ├── LazyBFSTreeLabeling.fsx ├── LazyGenNameLambda.fsx ├── LazyList.fsx ├── Life.fsx ├── Lightweight Staged Numeric code.fsx ├── Loop Unrolling.fsx ├── Monadic Memoization.fsx ├── Monadic Retry.fsx ├── Monadic Trampoline.fsx ├── Normalisation by evaluation.fsx ├── Norvig's Spelling Corrector.fsx ├── Polyvariadic fixpoint.fsx ├── Quotations to A-Normal form.fsx ├── Reducers.fsx ├── Scrap Your Boilerplate (with class).fsx ├── Scrap Your Boilerplate.fsx ├── Session Types.fsx ├── Stage your boilerplate.fsx ├── Staged Ackermann.fsx ├── Staged CPS Regular Expression Matcher.fsx ├── Staged Fixed-point combinator.fsx ├── Staged Free Monads.fsx ├── Staged Functional Unparsing.fsx ├── Staged HOAS.fsx ├── Staged Monoidal Folds.fsx ├── Staged Parallel Ziria Streams.fsx ├── Staged Parser Combinators.fsx ├── Staged Reducers.fsx ├── Staged Regular Expression Matcher.fsx ├── Staged Trampoline.fsx ├── Staged Ziria Streams.fsx ├── Staged typed formatting.fsx ├── Static.fs ├── The repmin problem.fsx ├── Type Safe Higher-order abstract syntax.fsx ├── Type based Regex Active Patterns.fsx ├── Type-level Fold.fsx ├── Type-level SAT solver.fsx ├── Unlambda.fsx ├── Y(n) Polyvariadic fixpoint.fsx ├── YIntensional.fsx ├── Yet another staged fixed-point combinator.fsx ├── n-ary Seq map.fsx ├── n-ary Seq.map (Numerals).fsx ├── packages.config └── yin-yang puzzle.fsx /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/README.md -------------------------------------------------------------------------------- /src/FSharpSnippets/A Lazy fixed-point combinator.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/A Lazy fixed-point combinator.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/A simple Quine.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/A simple Quine.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Abstracting over 'M'.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Abstracting over 'M'.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Actors acting as Lambdas.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Actors acting as Lambdas.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/AssemblyInfo.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/AssemblyInfo.fs -------------------------------------------------------------------------------- /src/FSharpSnippets/Async Choice.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Async Choice.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Bananas.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Bananas.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Church numerals.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Church numerals.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Clojure atom memoization example.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Clojure atom memoization example.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Clojure's Atoms.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Clojure's Atoms.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Countdown.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Countdown.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Delimited continuations.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Delimited continuations.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Dining philosophers (Joinads).fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Dining philosophers (Joinads).fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Eff via delimited continuations.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Eff via delimited continuations.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Eff.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Eff.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Effects and Handlers.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Effects and Handlers.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Equality Type.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Equality Type.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Erik Lippert's Comma Quibbling.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Erik Lippert's Comma Quibbling.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Eternity2.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Eternity2.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Evens and Odds via Z3.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Evens and Odds via Z3.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/FSharpSnippets.fsproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/FSharpSnippets.fsproj -------------------------------------------------------------------------------- /src/FSharpSnippets/FSharpSnippets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/FSharpSnippets.sln -------------------------------------------------------------------------------- /src/FSharpSnippets/Fixed-point finding function.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Fixed-point finding function.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/From Löb's Theorem to Spreadsheet Evaluation (memoized).fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/From Löb's Theorem to Spreadsheet Evaluation (memoized).fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/From Löb's Theorem to Spreadsheet Evaluation.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/From Löb's Theorem to Spreadsheet Evaluation.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Functional Unparsing SQL.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Functional Unparsing SQL.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Functional style Regex engine.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Functional style Regex engine.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Functor - Applicative - Monad.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Functor - Applicative - Monad.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/GC Friendly Fixpoint.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/GC Friendly Fixpoint.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Generic Collections, Type Classes and friends.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Generic Collections, Type Classes and friends.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Generic Numeric Literals and Compile time Peano arithmetic.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Generic Numeric Literals and Compile time Peano arithmetic.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/HLists, Peano - Type-level computations.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/HLists, Peano - Type-level computations.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Hughes's CPSFuncList.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Hughes's CPSFuncList.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Hughes's FuncList.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Hughes's FuncList.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Infinite sequences.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Infinite sequences.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Lazy Xml.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Lazy Xml.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Lazy fixed-point and Infinite Streams.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Lazy fixed-point and Infinite Streams.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/LazyBFSTreeLabeling.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/LazyBFSTreeLabeling.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/LazyGenNameLambda.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/LazyGenNameLambda.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/LazyList.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/LazyList.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Life.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Life.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Lightweight Staged Numeric code.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Lightweight Staged Numeric code.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Loop Unrolling.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Loop Unrolling.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Monadic Memoization.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Monadic Memoization.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Monadic Retry.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Monadic Retry.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Monadic Trampoline.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Monadic Trampoline.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Normalisation by evaluation.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Normalisation by evaluation.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Norvig's Spelling Corrector.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Norvig's Spelling Corrector.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Polyvariadic fixpoint.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Polyvariadic fixpoint.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Quotations to A-Normal form.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Quotations to A-Normal form.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Reducers.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Reducers.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Scrap Your Boilerplate (with class).fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Scrap Your Boilerplate (with class).fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Scrap Your Boilerplate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Scrap Your Boilerplate.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Session Types.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Session Types.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Stage your boilerplate.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Stage your boilerplate.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Ackermann.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Ackermann.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged CPS Regular Expression Matcher.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged CPS Regular Expression Matcher.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Fixed-point combinator.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Fixed-point combinator.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Free Monads.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Free Monads.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Functional Unparsing.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Functional Unparsing.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged HOAS.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged HOAS.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Monoidal Folds.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Monoidal Folds.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Parallel Ziria Streams.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Parallel Ziria Streams.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Parser Combinators.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Parser Combinators.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Reducers.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Reducers.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Regular Expression Matcher.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Regular Expression Matcher.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Trampoline.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Trampoline.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged Ziria Streams.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged Ziria Streams.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Staged typed formatting.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Staged typed formatting.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Static.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Static.fs -------------------------------------------------------------------------------- /src/FSharpSnippets/The repmin problem.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/The repmin problem.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Type Safe Higher-order abstract syntax.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Type Safe Higher-order abstract syntax.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Type based Regex Active Patterns.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Type based Regex Active Patterns.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Type-level Fold.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Type-level Fold.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Type-level SAT solver.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Type-level SAT solver.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Unlambda.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Unlambda.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Y(n) Polyvariadic fixpoint.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Y(n) Polyvariadic fixpoint.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/YIntensional.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/YIntensional.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/Yet another staged fixed-point combinator.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/Yet another staged fixed-point combinator.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/n-ary Seq map.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/n-ary Seq map.fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/n-ary Seq.map (Numerals).fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/n-ary Seq.map (Numerals).fsx -------------------------------------------------------------------------------- /src/FSharpSnippets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/packages.config -------------------------------------------------------------------------------- /src/FSharpSnippets/yin-yang puzzle.fsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/palladin/fsharp-snippets/HEAD/src/FSharpSnippets/yin-yang puzzle.fsx --------------------------------------------------------------------------------