This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#light | |
[<AutoOpen>] | |
module Operators = | |
let (||>) (x, y) f = f x y | |
module Map = | |
let transposeCombine m = | |
(Map.empty, m) ||> Map.fold_left (fun acc k1 m' -> | |
(acc, m') ||> Map.fold_left (fun acc' k2 v -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#light | |
[<AutoOpen>] | |
module Operators = | |
let (||>) (x, y) f = f x y | |
module Map = | |
let transposeCombine m = | |
(m, m) ||> Map.fold_left (fun acc k1 m' -> | |
(acc, m') ||> Map.fold_left (fun acc' k2 v -> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#light | |
[<AutoOpen>] | |
module Operators = | |
// Untuple forward operator | |
let (||>) (x,y) f = f x y | |
module Map = | |
let union m1 m2 = | |
(m1, m2) ||> Map.fold_right Map.add |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#light | |
[<AutoOpen>] | |
module Operators = | |
let (||>) (x,y) f = f x y | |
module Map = | |
let union m1 m2 = | |
(m1, m2) ||> Map.fold_right Map.add |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Map((!), intersection, fromList, keys, Map(..)) | |
import Data.List(sort) | |
type Preferences = Map String (Map String Double) | |
type Similarity = Preferences -> String -> String -> Double | |
critics :: Preferences | |
critics = fromList [ | |
("Lisa Rose", fromList | |
[("Lady in the Water" , 2.5), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Map(Map(..), (!), empty, findWithDefault, foldWithKey, fromList, insert) | |
import Data.Map as M | |
data City = Boise | |
| LosAngeles | |
| NewYork | |
| Seattle | |
| StLouis | |
| Phoenix | |
| Boston |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class FuncExtensions | |
{ | |
public static Func<TArg2, TResult> Apply<TArg1, TArg2, TResult>( | |
this Func<TArg1, TArg2, TResult> function, TArg1 x) | |
{ | |
return y => function(x, y); | |
} | |
public static Func<TSource, TResult> Compose<TSource, TIntermediate, TResult>( | |
this Func<TSource, TIntermediate> f1, Func<TIntermediate, TResult> f2) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class FuncExtensions | |
{ | |
public static Func<TArg1, Func<TArg2, TResult>> Curry<TArg1, TArg2, TResult>( | |
this Func<TArg1, TArg2, TResult> func) | |
{ | |
return arg1 => arg2 => func(arg1, arg2); | |
} | |
public static Func<TArg2, TResult> Apply<TArg1, TArg2, TResult>( | |
this Func<TArg1, TArg2, TResult> func, TArg1 arg1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Map((!), empty, fromList, filterWithKey, foldWithKey, insertWith, intersection, keys, notMember, toList, Map(..)) | |
import Data.List(sort) | |
type Preferences = Map String (Map String Double) | |
type Similarity = Preferences -> String -> String -> Double | |
critics :: Preferences | |
critics = fromList [ | |
("Lisa Rose", fromList | |
[("Lady in the Water" , 2.5), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Standard Factorial | |
let rec (!!) = function | |
| 1 -> 1 | |
| x -> x * (!!) (x - 1) | |
(3!!) // Doesn't work | |
-- Haskell version does | |
(!) :: Int -> Int | |
(!) 1 = 1 |