Alphabetize compiler/builtins/docs/ exposures

This commit is contained in:
j 2021-12-15 07:27:14 -07:00
parent 6056d29df0
commit ec68b1ab38
7 changed files with 127 additions and 127 deletions

View file

@ -1,5 +1,5 @@
interface Bool interface Bool
exposes [ not, and, or, xor, isEq, isNotEq ] exposes [ and, isEq, isNotEq, not, or, xor ]
imports [] imports []
## Returns `False` when given `True`, and vice versa. ## Returns `False` when given `True`, and vice versa.

View file

@ -2,19 +2,19 @@ interface Dict
exposes exposes
[ [
Dict, Dict,
contains,
difference,
empty, empty,
single,
get, get,
walk, keys,
insert, insert,
intersection,
len, len,
remove, remove,
contains, single,
keys,
values,
union, union,
intersection, values,
difference walk
] ]
imports [] imports []

View file

@ -2,41 +2,41 @@ interface List
exposes exposes
[ [
List, List,
isEmpty,
get,
set,
append, append,
len,
walkBackwards,
concat, concat,
first,
single,
repeat,
reverse,
prepend,
join,
keepIf,
contains, contains,
sum, drop,
walk, dropAt,
last, dropLast,
keepOks, first,
get,
isEmpty,
join,
keepErrs, keepErrs,
keepIf,
keepOks,
last,
len,
map, map,
map2, map2,
map3, map3,
map4, map4,
mapWithIndex,
mapOrDrop,
mapJoin, mapJoin,
mapOrDrop,
mapWithIndex,
prepend,
product, product,
walkUntil,
range, range,
repeat,
reverse,
set,
single,
sortWith, sortWith,
drop, sum,
dropAt, swap,
dropLast, walk,
swap walkBackwards,
walkUntil
] ]
imports [] imports []

View file

@ -2,91 +2,91 @@ interface Num
exposes exposes
[ [
Num, Num,
Int,
Float,
Natural,
Nat,
Decimal,
Dec,
Integer,
FloatingPoint,
I128,
U128,
I64,
U64,
I32,
U32,
I16,
U16,
I8,
U8,
F64,
F32,
maxInt,
minInt,
maxFloat,
minFloat,
abs,
neg,
add,
sub,
mul,
isLt,
isLte,
isGt,
isGte,
toFloat,
sin,
cos,
tan,
isZero,
isEven,
isOdd,
isPositive,
isNegative,
rem,
div,
divFloor,
modInt,
modFloat,
sqrt,
log,
round,
compare,
pow,
ceiling,
powInt,
floor,
addWrap,
addChecked,
atan,
acos,
toStr,
Signed128,
Signed64,
Signed32,
Signed16,
Signed8,
Unsigned128,
Unsigned64,
Unsigned32,
Unsigned16,
Unsigned8,
Binary64, Binary64,
Binary32, Binary32,
Dec,
Decimal,
Float,
FloatingPoint,
F32,
F64,
I8,
I16,
I32,
I64,
I128,
Int,
Integer,
Nat,
Natural,
Signed8,
Signed16,
Signed32,
Signed64,
Signed128,
U8,
U16,
U32,
U64,
U128,
Unsigned8,
Unsigned16,
Unsigned32,
Unsigned64,
Unsigned128,
abs,
acos,
add,
addChecked,
addWrap,
atan,
bitwiseAnd, bitwiseAnd,
bitwiseXor,
bitwiseOr, bitwiseOr,
bitwiseXor,
ceiling,
compare,
cos,
div,
divFloor,
floor,
intCast,
isEven,
isGt,
isGte,
isLt,
isLte,
isMultipleOf,
isNegative,
isOdd,
isPositive,
isZero,
log,
maxFloat,
maxI128,
maxInt,
minFloat,
minInt,
modInt,
modFloat,
mul,
mulChecked,
mulWrap,
neg,
pow,
powInt,
rem,
round,
shiftLeftBy, shiftLeftBy,
shiftRightBy, shiftRightBy,
shiftRightZfBy, shiftRightZfBy,
subWrap, sin,
sub,
subChecked, subChecked,
mulWrap, subWrap,
mulChecked, sqrt,
intCast, tan,
maxI128, toFloat,
isMultipleOf toStr
] ]
imports [] imports []

View file

@ -2,12 +2,12 @@ interface Result
exposes exposes
[ [
Result, Result,
after,
isOk, isOk,
isErr, isErr,
map, map,
mapErr, mapErr,
withDefault, withDefault
after
] ]
imports [] imports []

View file

@ -2,18 +2,18 @@ interface Set
exposes exposes
[ [
Set, Set,
empty, contains,
single,
len,
insert,
remove,
union,
difference, difference,
intersection, empty,
toList,
fromList, fromList,
walk, insert,
contains intersection,
len,
remove,
single,
toList,
union,
walk
] ]
imports [] imports []

View file

@ -2,19 +2,19 @@ interface Str
exposes exposes
[ [
Str, Str,
isEmpty,
append, append,
concat, concat,
joinWith,
split,
countGraphemes, countGraphemes,
startsWith,
endsWith, endsWith,
fromUtf8, fromUtf8,
Utf8Problem, isEmpty,
Utf8ByteProblem, joinWith,
split,
startsWith,
startsWithCodePt,
toUtf8, toUtf8,
startsWithCodePt Utf8Problem,
Utf8ByteProblem
] ]
imports [] imports []