mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
Alphabetize compiler/builtins/docs/ exposures
This commit is contained in:
parent
6056d29df0
commit
ec68b1ab38
7 changed files with 127 additions and 127 deletions
|
@ -1,5 +1,5 @@
|
|||
interface Bool
|
||||
exposes [ not, and, or, xor, isEq, isNotEq ]
|
||||
exposes [ and, isEq, isNotEq, not, or, xor ]
|
||||
imports []
|
||||
|
||||
## Returns `False` when given `True`, and vice versa.
|
||||
|
|
|
@ -2,19 +2,19 @@ interface Dict
|
|||
exposes
|
||||
[
|
||||
Dict,
|
||||
contains,
|
||||
difference,
|
||||
empty,
|
||||
single,
|
||||
get,
|
||||
walk,
|
||||
keys,
|
||||
insert,
|
||||
intersection,
|
||||
len,
|
||||
remove,
|
||||
contains,
|
||||
keys,
|
||||
values,
|
||||
single,
|
||||
union,
|
||||
intersection,
|
||||
difference
|
||||
values,
|
||||
walk
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
|
@ -2,41 +2,41 @@ interface List
|
|||
exposes
|
||||
[
|
||||
List,
|
||||
isEmpty,
|
||||
get,
|
||||
set,
|
||||
append,
|
||||
len,
|
||||
walkBackwards,
|
||||
concat,
|
||||
first,
|
||||
single,
|
||||
repeat,
|
||||
reverse,
|
||||
prepend,
|
||||
join,
|
||||
keepIf,
|
||||
contains,
|
||||
sum,
|
||||
walk,
|
||||
last,
|
||||
keepOks,
|
||||
drop,
|
||||
dropAt,
|
||||
dropLast,
|
||||
first,
|
||||
get,
|
||||
isEmpty,
|
||||
join,
|
||||
keepErrs,
|
||||
keepIf,
|
||||
keepOks,
|
||||
last,
|
||||
len,
|
||||
map,
|
||||
map2,
|
||||
map3,
|
||||
map4,
|
||||
mapWithIndex,
|
||||
mapOrDrop,
|
||||
mapJoin,
|
||||
mapOrDrop,
|
||||
mapWithIndex,
|
||||
prepend,
|
||||
product,
|
||||
walkUntil,
|
||||
range,
|
||||
repeat,
|
||||
reverse,
|
||||
set,
|
||||
single,
|
||||
sortWith,
|
||||
drop,
|
||||
dropAt,
|
||||
dropLast,
|
||||
swap
|
||||
sum,
|
||||
swap,
|
||||
walk,
|
||||
walkBackwards,
|
||||
walkUntil
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
|
@ -2,91 +2,91 @@ interface Num
|
|||
exposes
|
||||
[
|
||||
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,
|
||||
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,
|
||||
bitwiseXor,
|
||||
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,
|
||||
shiftRightBy,
|
||||
shiftRightZfBy,
|
||||
subWrap,
|
||||
sin,
|
||||
sub,
|
||||
subChecked,
|
||||
mulWrap,
|
||||
mulChecked,
|
||||
intCast,
|
||||
maxI128,
|
||||
isMultipleOf
|
||||
subWrap,
|
||||
sqrt,
|
||||
tan,
|
||||
toFloat,
|
||||
toStr
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
|
@ -2,12 +2,12 @@ interface Result
|
|||
exposes
|
||||
[
|
||||
Result,
|
||||
after,
|
||||
isOk,
|
||||
isErr,
|
||||
map,
|
||||
mapErr,
|
||||
withDefault,
|
||||
after
|
||||
withDefault
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
|
@ -2,18 +2,18 @@ interface Set
|
|||
exposes
|
||||
[
|
||||
Set,
|
||||
empty,
|
||||
single,
|
||||
len,
|
||||
insert,
|
||||
remove,
|
||||
union,
|
||||
contains,
|
||||
difference,
|
||||
intersection,
|
||||
toList,
|
||||
empty,
|
||||
fromList,
|
||||
walk,
|
||||
contains
|
||||
insert,
|
||||
intersection,
|
||||
len,
|
||||
remove,
|
||||
single,
|
||||
toList,
|
||||
union,
|
||||
walk
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
|
@ -2,19 +2,19 @@ interface Str
|
|||
exposes
|
||||
[
|
||||
Str,
|
||||
isEmpty,
|
||||
append,
|
||||
concat,
|
||||
joinWith,
|
||||
split,
|
||||
countGraphemes,
|
||||
startsWith,
|
||||
endsWith,
|
||||
fromUtf8,
|
||||
Utf8Problem,
|
||||
Utf8ByteProblem,
|
||||
isEmpty,
|
||||
joinWith,
|
||||
split,
|
||||
startsWith,
|
||||
startsWithCodePt,
|
||||
toUtf8,
|
||||
startsWithCodePt
|
||||
Utf8Problem,
|
||||
Utf8ByteProblem
|
||||
]
|
||||
imports []
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue