首页 > 解决方案 > 如何在 Javascript 中实现可靠、通用和类型安全的函数?

问题描述

我有一个Object可能以三种不同的形式出现:

{done, key, value}
{done, key}
{done, value}

我将其中两个传递Object给一个需要处理所有三种情况的函数,类似于逻辑or操作。

这是我到目前为止所做的:

const orFun = (pred, def) => x => y => {
  const r = pred(x),
    s = pred(y);

  return !r && !s ? def
    : r && s ? [x, y]
    : r ? x
    : y;
};

const entry = {key: 1, value: "a"};
const value = {value: "a"};
const key = {key: 1};

orFun(x => x !== undefined, []) (entry.key) (entry.value); // ["a",1]
orFun(x => x !== undefined, []) (key.key) (key.value); // 1
orFun(x => x !== undefined, []) (value.key) (value.value); // "a"
orFun(x => x !== undefined, []) (none.key) (none.value); // []

这适用于我的特定问题,但我想知道这是否也适用于其他用例。本着函数式编程的精神,这是一个通用的解决方案和类型安全吗?

标签: javascripttypesfunctional-programming

解决方案


询问 Javascript 中的类型安全性有点微妙,因为它是一种无类型语言。但是,无论如何考虑类型,您都走在正确的轨道上,可以使您的代码更可靠、更易于理解。

尽早抛出错误

由于我们没有在应用程序发布之前为我们发现错误的编译器,因此适用以下经验法则:

Error你的代码应该总是尽可能快地抛出s 而不是隐含地吞下它们。

正如您已经注意到的那样,您的函数可以被认为是包含或类型(而不是either表示异或)。但是,由于 的 codomainorFun不限于Booleans,您就有麻烦了,因为这种情况没有通用的默认值。您可以产生一个单元类型,例如null,但您会强制调用者执行null检查。而是诚实地抛出:

const orFun = p => x => y => {
  const r = p(x),
    s = p(y);

  if (!r && !s)
    throw new TypeError();

  return r && s ? [x, y]
    : r ? x
    : y;
};

const entry = {key: 1, value: "a"},
  none = {};

orFun(x => x !== undefined) (entry.key) (entry.value); // [1, "a"]
orFun(x => x !== undefined) (none.key) (none.value); // throws TypeError

明确案例

您的代码中还有第二个更微妙的缺陷:opFun返回三种不同的类型:

Number
String
[Number, String]

您应该明确说明这一事实。实现这一点的一种方法是将所有案例的提供强加给调用者。为此,我使用了可区分联合类型的编码:

// discriminated union helper

const unionType = tag => (f, ...args) =>
   ({["run" + tag]: f, [Symbol.toStringTag]: tag, [Symbol("args")]: args});

// union type

const These = unionType("These");

const _this = x =>
  These((_this, that, these) => _this(x), x);

const that = x =>
  These((_this, that, these) => that(x), x);
  
const these = (x, y) =>
  These((_this, that, these) => these(x, y), x, y);

// orFun

const orFun = p => x => y => {
  const r = p(x),
    s = p(y);

  if (!r && !s)
    throw new TypeError();

  return r && s ? these(x, y)
    : r ? _this(x)
    : that(y);
};

// mock objects

const entry = {key: 1, value: "a"};
const value = {value: "a"};
const key = {key: 1};
const none = {};

// MAIN

const entryCase =
  orFun(x => x !== undefined) (entry.key) (entry.value);
  
const keyCase =
  orFun(x => x !== undefined) (key.key) (key.value);
  
const valueCase =
  orFun(x => x !== undefined) (value.key) (value.value);
  
let errorCase;

try {orFun(x => x !== undefined) (none.key) (none.value)}
catch (e) {errorCase = e}

console.log(
  entryCase.runThese(
    x => x + 1,
    x => x.toUpperCase(),
    (x, y) => [x, y]));
  
console.log(
  keyCase.runThese(
    x => x + 1,
    x => x.toUpperCase(),
    (x, y) => [x, y])),
    
console.log(
  valueCase.runThese(
  x => x + 1,
  x => x.toUpperCase(),
  (x, y) => [x, y]));

console.error(errorCase);

此外,这种风格在调用方为您节省了条件语句。你仍然没有类型安全,但你的代码变得更有弹性,你的意图变得更清晰。

上面的技术基本上是通过连续传递(CPS)进行的模式匹配。高阶函数关闭一些数据参数,接受一堆延续,并知道为特定情况选择哪个延续。因此,如果有人告诉您 Javascript 中没有模式匹配,您可以证明他们是错误的。

更通用的实现

您要求更通用的实现。让我们从名称开始:我认为您在这里所做的基本上是一个toThese操作。您想These从可能不满足其类型的源构造一个值。Either您也可以为(表示逻辑异或)或Pair(表示逻辑与)实现这样的运算符。所以让我们调用函数toThese

接下来,您应该传递两个谓词函数,以便更灵活地确定大小写。

最后,在某些情况下可能会有一个合理的默认值,因此我们并不总是想抛出错误。这是一个可能的解决方案:

const _let = f => f();

const sumType = tag => (f, ...args) =>
   ({["run" + tag]: f, [Symbol.toStringTag]: tag, [Symbol("args")]: args});

const These = sumType("These");

const _this = x =>
  These((_this, that, these) => _this(x), x);

const that = x =>
  These((_this, that, these) => that(x), x);

const these = (x, y) =>
  These((_this, that, these) => these(x, y), x, y);

const toThese = (p, q, def) => x => y =>
  _let((r = p(x), s = q(y)) =>
    r && s ? these(x, y)
      : !r && !s ? def(x) (y)
      : x ? _this(x)
      : that(y));
      
const isDefined = x => x !== undefined;

const o = {key: 1, value: "a"};
const p = {key: 1};
const q = {value: "a"};
const r = {};

const tx = toThese(isDefined, isDefined, x => y => {throw Error()}) (o.key) (o.value),
  ty = toThese(isDefined, isDefined, x => y => {throw Error()}) (p.key) (p.value),
  tz = toThese(isDefined, isDefined, x => y => {throw Error()}) (q.key) (q.value);
  
let err;

try {toThese(isDefined, isDefined, () => () => {throw new Error("type not satisfied")}) (r.key) (r.value)}
catch(e) {err = e}

console.log(tx.runThese(x => x + 1,
  x => x.toUpperCase(),
  (x, y) => [x + 1, y.toUpperCase()]));

console.log(ty.runThese(x => x + 1,
  x => x.toUpperCase(),
  (x, y) => [x + 1, y.toUpperCase()]));

console.log(tz.runThese(x => x + 1,
  x => x.toUpperCase(),
  (x, y) => [x + 1, y.toUpperCase()]));
  
 throw err;


推荐阅读