内容简介:之前都使用VS Code 1.34.0Quokka 1.0.216
之前都使用 Maybe 自帶的 Method,以 OOP 的 Method Chaining 處理 Maybe ,事實上也能完全以 FP 的 Function Composition 處理。
Version
VS Code 1.34.0
Quokka 1.0.216
Ramda 0.26.1
Crocks 0.11.1
OOP
import { isString, and, not, isEmpty, prop, safe, Maybe } from 'crocks';
import { compose, join, split, toLower, concat } from 'ramda';
let { of } = Maybe;
// isNonEmptyString :: a -> Boolean
let isNonEmptyString = and(not(isEmpty), isString);
// createUrlSlug :: String -> String
let createSlug = compose(join('-'), split(' '), toLower);
// appendSlug :: String -> String
let appendSlug = concat('https://oomusou.io/crocks/');
// createUrl :: String -> String
let createUrl = compose(appendSlug, createSlug);
let data = {
title: '',
price: 100,
};
// fn :: Object -> Maybe String
let fn = obj => prop('title', obj)
.chain(safe(isNonEmptyString))
.alt(of('page-not-found'))
.map(createUrl);
fn(data).option('https://oomusou.io'); // ?
23 行
// fn :: Object -> Maybe String
let fn = obj => prop('title', obj)
.chain(safe(isNonEmptyString))
.alt(of('page-not-found'))
.map(createUrl);
在 使用 alt() 提早處理 Nothing 一文中,由於 prop() 回傳 Maybe ,我們使用了一系列的 chain() 、 alt() 、 map() 處理 Maybe ,這些都是 Maybe 自帶 method,呈現出 OOP 風格的 method chaining,我們能否使用 FP 的 function composition 處理 Maybe 呢 ?
FP
import { isString, and, not, isEmpty, prop, safe, Maybe, chain, alt, map, option } from 'crocks';
import { compose, join, split, toLower, concat, pipe } from 'ramda';
let { of } = Maybe;
// isNonEmptyString :: a -> Boolean
let isNonEmptyString = and(not(isEmpty), isString);
// createUrlSlug :: String -> String
let createSlug = compose(join('-'), split(' '), toLower);
// appendSlug :: String -> String
let appendSlug = concat('https://oomusou.io/crocks/');
// createUrl :: String -> String
let createUrl = compose(appendSlug, createSlug);
let data = {
title: '',
price: 100,
};
// fn :: Object -> Maybe String
let fn = pipe(
prop('title'),
chain(safe(isNonEmptyString)),
alt(of('page-not-found')),
map(createUrl)
);
option('https://oomusou.io')(fn(data)); // ?
第 1 行
import { isString, and, not, isEmpty, prop, safe, Maybe, chain, alt, map, option } from 'crocks';
將原本的 chain() 、 alt() 、 map() 與 option() 改以 function 從 Crocks import 進來。
第 2 行
import { compose, join, split, toLower, concat, pipe } from 'ramda';
從 Ramda import 進 pipe() 。
也可以使用 Crocks 的 compose() 與 pipe()
23 行
// fn :: Object -> Maybe String
let fn = pipe(
prop('title'),
chain(safe(isNonEmptyString)),
alt(of('page-not-found')),
map(createUrl)
);
pipe() 將 obj parameter 給 point-free 了,且完全不使用 method chaining。
31 行
option('https://oomusou.io')(fn(data)); // ?
option() 也可改用 function 方式。
Function Composition
import { isString, and, not, isEmpty, prop, safe, Maybe, chain, alt, map, option } from 'crocks';
import { compose, join, split, toLower, concat, pipe } from 'ramda';
let { of } = Maybe;
// isNonEmptyString :: a -> Boolean
let isNonEmptyString = and(not(isEmpty), isString);
// createUrlSlug :: String -> String
let createSlug = compose(join('-'), split(' '), toLower);
// appendSlug :: String -> String
let appendSlug = concat('https://oomusou.io/crocks/');
// getSlugIfEmptyString :: Maybe String -> Maybe String
let getSlugIfEmptyString = pipe(
chain(safe(isNonEmptyString)),
alt(of('page-not-found')),
);
// createUrl :: String -> String
let createUrl = compose(appendSlug, createSlug);
let data = {
title: '',
price: 100,
};
// fn :: Object -> Maybe String
let fn = pipe(
prop('title'),
getSlugIfEmptyString,
map(createUrl)
);
option('https://oomusou.io')(fn(data)); // ?
29 行
// fn :: Object -> Maybe String
let fn = pipe(
prop('title'),
getSlugIfEmptyString,
map(createUrl)
);
Q:從 method chaining 改成 function composition 只是語法差異,還有什麼實際用途嗎 ?
chain() 與 alt() 是為了處理 empty string 特別邏輯,可將這部分單獨抽出成 getSlugIfEmptyString() ,其語義更為清楚。
15 行
// getSlugIfEmptyString :: Maybe String -> Maybe String
let getSlugIfEmptyString = pipe(
chain(safe(isNonEmptyString)),
alt(of('page-not-found')),
);
反之若使用 method chaining,則 chain() 與 alt() 很難單獨抽出來,因為都綁在 Maybe 上了,這就是 FP 將 data 與 function 分離的優勢。。
Conclusion
- 在 使用 coalesce() 提早提供 Function 處理 Nothing 一文中的
coalesce()也可改用 function - 處理
Maybe時,不見得一定得用其自帶的 method,也可以使用同名 function,方便 function composition
Reference
Andy Van Slaars , Compose Function for Reusability with the Maybe Type
以上所述就是小编给大家介绍的《Maybe 也能使用 Function Composition》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
程序员代码面试指南:IT名企算法与数据结构题目最优解
左程云 / 电子工业出版社 / 2015-9 / 79.00元
这是一本程序员面试宝典!书中对IT名企代码面试各类题目的最优解进行了总结,并提供了相关代码实现。针对当前程序员面试缺乏权威题目汇总这一痛点,本书选取将近200道真实出现过的经典代码面试题,帮助广大程序员的面试准备做到万无一失。“刷”完本书后,你就是“题王”!__eol__本书采用题目+解答的方式组织内容,并把面试题类型相近或者解法相近的题目尽量放在一起,读者在学习本书时很容易看出面试题解法之间的联......一起来看看 《程序员代码面试指南:IT名企算法与数据结构题目最优解》 这本书的介绍吧!