Lines Matching defs:types

149 types(erlang, 'map_size', [_]) ->  function
151 types(erlang, 'tuple_size', [_]) -> function
153 types(erlang, 'bit_size', [_]) -> function
155 types(erlang, 'byte_size', [_]) -> function
157 types(erlang, hd, [Src]) -> function
160 types(erlang, tl, [Src]) -> function
163 types(erlang, 'not', [_]) -> function
166 types(erlang, 'length', [_]) -> function
170 types(erlang, 'and', [_,_]) -> function
173 types(erlang, 'or', [_,_]) -> function
176 types(erlang, 'xor', [_,_]) -> function
181 types(erlang, 'band', [_,_]=Args) -> function
183 types(erlang, 'bor', [_,_]) -> function
185 types(erlang, 'bxor', [_,_]) -> function
187 types(erlang, 'bsl', [_,_]) -> function
189 types(erlang, 'bsr', [_,_]) -> function
191 types(erlang, 'bnot', [_]) -> function
195 types(erlang, 'float', [_]) -> function
197 types(erlang, 'round', [_]) -> function
199 types(erlang, 'floor', [_]) -> function
201 types(erlang, 'ceil', [_]) -> function
203 types(erlang, 'trunc', [_]) -> function
205 types(erlang, '/', [_,_]) -> function
207 types(erlang, 'div', [_,_]) -> function
209 types(erlang, 'rem', [_,_]) -> function
214 types(erlang, 'abs', [_]=Args) -> function
218 types(erlang, '++', [LHS, RHS]) -> function
223 types(erlang, '--', [LHS, _]) -> function
227 types(erlang, 'iolist_to_binary', [_]) -> function
231 types(erlang, 'list_to_binary', [_]) -> function
234 types(erlang, 'list_to_bitstring', [_]) -> function
239 types(erlang, 'binary_part', [_, _]) -> function
243 types(erlang, 'binary_part', [_, _, _]) -> function
246 types(erlang, 'is_map_key', [Key, Map]) -> function
252 types(erlang, 'map_get', [Key, Map]) -> function
255 types(erlang, 'node', [_]) -> function
257 types(erlang, 'node', []) -> function
259 types(erlang, 'size', [_]) -> function
264 types(erlang, element, [PosType, TupleType]) -> function
281 types(erlang, setelement, [PosType, TupleType, ArgType]) -> function
321 types(erlang, make_fun, [_,_,Arity0]) -> function
330 types(erlang, Name, Args) -> function
358 types(math, cos, [_]) -> function
360 types(math, cosh, [_]) -> function
362 types(math, sin, [_]) -> function
364 types(math, sinh, [_]) -> function
366 types(math, tan, [_]) -> function
368 types(math, tanh, [_]) -> function
370 types(math, acos, [_]) -> function
372 types(math, acosh, [_]) -> function
374 types(math, asin, [_]) -> function
376 types(math, asinh, [_]) -> function
378 types(math, atan, [_]) -> function
380 types(math, atanh, [_]) -> function
382 types(math, erf, [_]) -> function
384 types(math, erfc, [_]) -> function
386 types(math, exp, [_]) -> function
388 types(math, log, [_]) -> function
390 types(math, log2, [_]) -> function
392 types(math, log10, [_]) -> function
394 types(math, sqrt, [_]) -> function
396 types(math, atan2, [_,_]) -> function
398 types(math, pow, [_,_]) -> function
400 types(math, ceil, [_]) -> function
402 types(math, floor, [_]) -> function
404 types(math, fmod, [_,_]) -> function
406 types(math, pi, []) -> function
420 types(lists, append, [_,_]=Args) -> function
422 types(lists, append, [_]) -> function
427 types(lists, subtract, [_,_]=Args) -> function
431 types(lists, all, [_,_]) -> function
435 types(lists, any, [_,_]) -> function
438 types(lists, keymember, [_,_,_]) -> function
441 types(lists, member, [_,_]) -> function
444 types(lists, prefix, [_,_]) -> function
448 types(lists, suffix, [_,_]) -> function
454 types(lists, foldl, [Fun, Init, List]) -> function
457 types(lists, foldr, [Fun, Init, List]) -> function
462 types(lists, droplast, [List]) -> function
465 types(lists, dropwhile, [_Fun, List]) -> function
470 types(lists, duplicate, [_Count, Element]) -> function
472 types(lists, filter, [_Fun, List]) -> function
475 types(lists, flatten, [_]) -> function
477 types(lists, map, [Fun, List]) -> function
480 types(lists, reverse, [List]) -> function
483 types(lists, sort, [List]) -> function
486 types(lists, takewhile, [_Fun, List]) -> function
490 types(lists, usort, [List]) -> function
495 types(lists, zip, [_,_]=Lists) -> function
498 types(lists, zipwith, [Fun | [_,_]=Lists]) -> function
503 types(lists, keyfind, [KeyType,PosType,_]) -> function
515 types(lists, MapFold, [Fun, Init, List]) function
519 types(lists, partition, [_Fun, List]) -> function
523 types(lists, search, [_,_]) -> function
528 types(lists, splitwith, [_Fun, List]) -> function
534 types(lists, unzip, [List]) -> function
542 types(maps, filter, [_Fun, Map]) -> function
549 types(maps, find, [Key, Map]) -> function
559 types(maps, fold, [Fun, Init, _Map]) -> function
569 types(maps, from_keys, [Keys, Value]) -> function
573 types(maps, from_list, [Pairs]) -> function
584 types(maps, get, [_Key, _Map]=Args) -> function
586 types(maps, get, [Key, Map, Default]) -> function
592 types(maps, is_key, [_Key, _Map]=Args) -> function
594 types(maps, keys, [Map]) -> function
601 types(maps, map, [Fun, Map]) -> function
610 types(maps, merge, [A, B]) -> function
621 types(maps, new, []) -> function
624 types(maps, put, [Key, Value, Map]) -> function
634 types(maps, remove, [Key, Map]) -> function
637 types(maps, take, [Key, Map]) -> function
648 types(maps, to_list, [Map]) -> function
656 types(maps, update_with, [_Key, Fun, Map]) -> function
665 types(maps, values, [Map]) -> function
672 types(maps, with, [Keys, Map]) -> function
684 types(maps, without, [Keys, Map]) -> function
690 types(_, _, Args) -> function