受 clojure 启发的传感器可以使用 HM 类型系统输入吗?

问题描述

我刚刚找到了我的问题的答案,但既不能撤销赏金也不能删除问题,这让我处于一种尴尬的境地。

我有一个功能的 Javascript 转换器实现,支持循环融合和短路。请注意,虽然我使用的是 JS,但这并不是理解问题的必要条件。只有类型很重要。

// ((a -> r) -> r) -> Cont r a
const Cont = k => ({run: k});

// (a -> b -> Cont b b) -> b -> [a] -> b
const foldk = f => init => xs => {
  let acc = init;

  for (let i = xs.length - 1; i >= 0; i--)
    acc = f(xs[i]) (acc).run(id);

  return acc;
};

// (a -> b) -> (b -> t b -> Cont (t b) (t b)) -> a -> t b -> Cont (t b) (t b)
const map = f => cons => x => acc =>
  Cont(k => cons(f(x)) (acc).run(k));

// (a -> Bool) -> (a -> t a -> Cont (t a) (t a)) -> a -> t a -> Cont (t a) (t a)
const filter = p => cons => x => acc =>
  Cont(k =>
    p(x)
      ? cons(x) (acc).run(k)
      : k(acc));

// (b -> c) -> (a -> b) -> a -> c
const comp = f => g => x => f(g(x));

const liftCont2 = f => x => y => Cont(k => k(f(x) (y)));
const unshift = x => xs => (xs.unshift(x),xs);
const includes = sub => s => s.includes(sub);
const len = arrayLike => arrayLike.length;
const id = x => x;

// (String -> t String -> Cont (t String) (t String))
//   -> String -> t String -> Cont (t String) (t String)
const filterO = filter(includes("o"));

// (Number -> t Number -> Cont (t Number) (t Number))
//    -> String -> t Number -> Cont (t Number) (t Number)
const mapLen = map(len);

// type error
const transducer = comp(filterO) (mapLen);

const reducer =  transducer(liftCont2(unshift));

const main = foldk(reducer) ([]) (["f","fo","foo","fooo"]);

console.log(main); // [2,3,4] with only a single traversal

如您所见,折叠有效但不进行类型检查。揭示类型错误需要一些手动统一:

unify `comp(filterO)`:
(b -> c) -> (a -> b) -> a -> c
(String -> t String -> Cont (t String) (t String))
  -> String -> t String -> Cont (t String) (t String)

yields

(a -> String -> t String -> Cont (t String) (t String))
  -> a -> String -> t<String> -> Cont (t String) (t String)

unify result of `comp(filterO)` with `mapLen` (contravariant):
a -> String -> t String -> Cont (t String) (t String)
(Number -> t Number -> Cont (t Number) (t Number))
  -> String -> t Number -> Cont (t Number) (t Number)

substitutes

a ~ Number -> t Number -> Cont (t Number) (t Number)

unify (covariant):
String -> t String -> Cont (t String) (t String)
String -> t Number -> Cont (t Number) (t Number)

这两个术语显然不能统一。

转换器是动态语言独有的概念,不能输入吗?我在统一过程中犯了错误还是我的转换器类型 (map/filtert) 完全错误

解决方法

您对 mapfilter 的类型签名不够通用。

// map :: (a -> b) -> (b -> t b -> Cont (t b) (t b)) -> a -> t b -> Cont (t b) (t b)
const map = f => cons => x => acc => Cont(k => cons(f(x))(acc).run(k));

// filter :: (a -> Bool) -> (a -> t a -> Cont (t a) (t a)) -> a -> t a -> Cont (t a) (t a)
const filter = p => cons => x => acc => Cont(k => p(x) ? cons(x)(acc).run(k) : k(acc));

acc 的类型和 k 的输入类型应该相同,并且应该独立于其他类型。 k 的返回类型也应该独立于其他类型。

// type Reducer r a b = a -> b -> Cont r b

// map :: (a -> b) -> Reducer r b c -> Reducer r a c
const map = f => cons => x => acc => Cont(k => cons(f(x))(acc).run(k));

// filter :: (a -> Bool) -> Reducer r a b -> Reducer r a b
const filter = p => cons => x => acc => Cont(k => p(x) ? cons(x)(acc).run(k) : k(acc));

请注意,Reducer 类型只是将 cons 类型转换为 continuation-passing 样式。使用此类型时,生成的程序类型会按预期进行检查。

// data Cont r a = Cont { run :: (a -> r) -> r }
const Cont = run => ({ run });

// type Reducer r a b = a -> b -> Cont r b

// foldk :: Reducer b a b -> b -> [a] -> b
const foldk = f => init => xs => xs.reduceRight((acc,x) => f(x)(acc).run(id),init);

// map :: (a -> b) -> Reducer r b c -> Reducer r a c
const map = f => cons => x => acc => Cont(k => cons(f(x))(acc).run(k));

// filter :: (a -> Bool) -> Reducer r a b -> Reducer r a b
const filter = p => cons => x => acc => Cont(k => p(x) ? cons(x)(acc).run(k) : k(acc));

// comp :: (b -> c) -> (a -> b) -> a -> c
const comp = f => g => x => f(g(x));

// liftCont2 :: (a -> b -> c) -> a -> b -> Cont r c
const liftCont2 = f => x => y => Cont(k => k(f(x)(y)));

// unshift :: a -> [a] -> [a]
const unshift = x => xs => [x,...xs];

// includes :: String -> String -> Bool
const includes = sub => s => s.includes(sub);

// len :: ArrayLike t => t a -> Number
const len = arrayLike => arrayLike.length;

// id :: a -> a
const id = x => x;

// filterO :: Reducer r String a -> Reducer r String a
const filterO = filter(includes("o"));

// mapLen :: ArrayLike t => Reducer r Number b -> Reducer r (t a) b
const mapLen = map(len);

// transducer :: Reducer r Number a -> Reducer r String a
const transducer = comp(filterO)(mapLen);

// reducer :: Reducer r String [Number]
const reducer = transducer(liftCont2(unshift));

// main :: [Number]
const main = foldk(reducer)([])(["f","fo","foo","fooo"]);

// [2,3,4]
console.log(main);

但是,将reducer转换为CPS并没有任何意义。将减速器转换为 CPS 不会给您带来任何好处,因为无论如何传感器都是用 CPS 编写的。事实上,在上面的程序中 CPS 是没有意义的,因为您使用的唯一延续是 id(在 foldk 函数中)。如果您不使用 CPS,那么您的程序就会变得简单得多。

// type Reducer a b = a -> b -> b

// foldr :: Reducer a b -> b -> [a] -> b
const foldr = f => init => xs => xs.reduceRight((acc,x) => f(x)(acc),init);

// map :: (a -> b) -> Reducer b c -> Reducer a c
const map = f => cons => x => cons(f(x));

// filter :: (a -> Bool) -> Reducer a b -> Reducer a b
const filter = p => cons => x => p(x) ? cons(x) : id;

// comp :: (b -> c) -> (a -> b) -> a -> c
const comp = f => g => x => f(g(x));

// unshift :: a -> [a] -> [a]
const unshift = x => xs => [x,...xs];

// includes :: String -> String -> Bool
const includes = sub => s => s.includes(sub);

// len :: ArrayLike t => t a -> Number
const len = arrayLike => arrayLike.length;

// id :: a -> a
const id = x => x;

// filterO :: Reducer String a -> Reducer String a
const filterO = filter(includes("o"));

// mapLen :: ArrayLike t => Reducer Number b -> Reducer (t a) b
const mapLen = map(len);

// transducer :: Reducer Number a -> Reducer String a
const transducer = comp(filterO)(mapLen);

// reducer :: Reducer String [Number]
const reducer = transducer(unshift);

// main :: [Number]
const main = foldr(reducer)([])(["f",4]
console.log(main);

不要仅仅为了使用延续而使用延续。 99% 的情况下您不需要延续。

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...