composite(Function1, Function2) -> Function3
类型:
Function1 = Function2 = Function3 = a_function()
返回合成的的函数Function1
和Function2
.
1> F1 = sofs:a_function([{a,1},{b,2},{c,2}]),
F2 = sofs:a_function([{1,x},{2,y},{3,z}]),
F = sofs:composite(F1, F2),
sofs:to_external(F).
[{a,x},{b,y},{c,y}]
相关用法
- erlang compose_query(QueryList)用法及代码示例
- erlang compose_query(QueryList, Options)用法及代码示例
- erlang cos用法及代码示例
- erlang concat用法及代码示例
- erlang copy用法及代码示例
- erlang cons(Item, Q1 :: queue(Item))用法及代码示例
- erlang consult(Filename)用法及代码示例
- erlang concat(Things)用法及代码示例
- erlang connect(Address, Port, Opts)用法及代码示例
- erlang constant_function(Set, AnySet)用法及代码示例
- erlang converse(BinRel1)用法及代码示例
- erlang connect(Socket, Addr, Port, Opts, Timeout)用法及代码示例
- erlang chr用法及代码示例
- erlang ceil(Number)用法及代码示例
- erlang crc32(OldCrc, Data)用法及代码示例
- erlang crc32_combine(FirstCrc, SecondCrc, SecondSize)用法及代码示例
- erlang carriers(Options)用法及代码示例
- erlang cd(Dir)用法及代码示例
- erlang cmd(Command)用法及代码示例
- erlang crc32(Z, PrevCRC, Data)用法及代码示例
- erlang casefold(String :: unicode:chardata())用法及代码示例
- erlang chomp(String :: unicode:chardata())用法及代码示例
- erlang cspan(String, Chars)用法及代码示例
- erlang characters_to_list(Data, InEncoding)用法及代码示例
- erlang characters_to_nfc_list(CD :: chardata())用法及代码示例
注:本文由纯净天空筛选整理自erlang.org大神的英文原创作品 composite(Function1, Function2) -> Function3。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。