cryptol/tests/issues/issue226.icry.stdout

90 lines
4.1 KiB
Plaintext
Raw Normal View History

2014-04-18 02:34:25 +04:00
Loading module Cryptol
Loading module Cryptol
Loading module issue226r2
Loading module issue226
Type Synonyms
=============
type Bool = Bit
type Char = [8]
type String n = [n][8]
type Word n = [n]
Symbols
=======
2015-06-10 00:32:17 +03:00
(!) : {a, b, c} (fin a, fin c) => [a]b -> [c] -> b
(!!) : {a, b, c, d} (fin a, fin d) => [a]b -> [c][d] -> [c]b
2015-08-13 01:52:18 +03:00
(!=) : {a} (Cmp a) => a -> a -> Bit
(!==) : {a, b} (Cmp b) => (a -> b) -> (a -> b) -> a -> Bit
2015-06-10 00:32:17 +03:00
(#) : {front, back,
a} (fin front) => [front]a -> [back]a -> [front + back]a
(%) : {a} (Arith a) => a -> a -> a
(&&) : {a} a -> a -> a
(*) : {a} (Arith a) => a -> a -> a
(+) : {a} (Arith a) => a -> a -> a
(-) : {a} (Arith a) => a -> a -> a
(/) : {a} (Arith a) => a -> a -> a
2015-08-13 01:52:18 +03:00
(<) : {a} (Cmp a) => a -> a -> Bit
2015-06-10 00:32:17 +03:00
(<<) : {a, b, c} (fin b) => [a]c -> [b] -> [a]c
(<<<) : {a, b, c} (fin a, fin b) => [a]c -> [b] -> [a]c
2015-08-13 01:52:18 +03:00
(<=) : {a} (Cmp a) => a -> a -> Bit
(==) : {a} (Cmp a) => a -> a -> Bit
(===) : {a, b} (Cmp b) => (a -> b) -> (a -> b) -> a -> Bit
(>) : {a} (Cmp a) => a -> a -> Bit
(>=) : {a} (Cmp a) => a -> a -> Bit
2015-06-10 00:32:17 +03:00
(>>) : {a, b, c} (fin b) => [a]c -> [b] -> [a]c
(>>>) : {a, b, c} (fin a, fin b) => [a]c -> [b] -> [a]c
(@) : {a, b, c} (fin c) => [a]b -> [c] -> b
(@@) : {a, b, c, d} (fin d) => [a]b -> [c][d] -> [c]b
False : Bit
True : Bit
(^) : {a} a -> a -> a
(^^) : {a} (Arith a) => a -> a -> a
complement : {a} a -> a
demote : {val, bits} (fin val, fin bits,
bits >= width val) => [bits]
2014-04-18 02:34:25 +04:00
drop : {front, back, elem} (fin front) => [front +
back]elem -> [back]elem
2015-06-10 00:32:17 +03:00
error : {at, len} (fin len) => [len][8] -> at
2014-04-18 02:34:25 +04:00
foo : {a} a -> a
2015-06-10 00:32:17 +03:00
fromThen : {first, next, bits, len} (fin first, fin next, fin bits,
bits >= width first, bits >= width next,
lengthFromThen first next bits == len) => [len][bits]
fromThenTo : {first, next, last, bits, len} (fin first, fin next,
fin last, fin bits, bits >= width first,
bits >= width next, bits >= width last,
lengthFromThenTo first next
last == len) => [len][bits]
fromTo : {first, last, bits} (fin last, fin bits, last >= first,
bits >= width last) => [1 + (last - first)][bits]
2014-04-18 02:34:25 +04:00
groupBy : {each, parts, elem} (fin each) => [parts *
each]elem -> [parts][each]elem
2015-06-10 00:32:17 +03:00
infFrom : {bits} (fin bits) => [bits] -> [inf][bits]
infFromThen : {bits} (fin bits) => [bits] -> [bits] -> [inf][bits]
join : {parts, each, a} (fin each) => [parts][each]a -> [parts *
each]a
lg2 : {a} (Arith a) => a -> a
max : {a} (Cmp a) => a -> a -> a
min : {a} (Cmp a) => a -> a -> a
negate : {a} (Arith a) => a -> a
pdiv : {a, b} (fin a, fin b) => [a] -> [b] -> [a]
pmod : {a, b} (fin a, fin b) => [a] -> [1 + b] -> [b]
pmult : {a, b} (fin a, fin b) => [a] -> [b] -> [max 1 (a + b) - 1]
random : {a} [32] -> a
reverse : {a, b} (fin a) => [a]b -> [a]b
split : {parts, each, a} (fin each) => [parts *
each]a -> [parts][each]a
splitAt : {front, back, a} (fin front) => [front +
back]a -> ([front]a, [back]a)
2014-04-18 02:34:25 +04:00
splitBy : {parts, each, elem} (fin each) => [parts *
each]elem -> [parts][each]elem
tail : {a, b} [1 + a]b -> [a]b
take : {front, back, elem} (fin front) => [front +
back]elem -> [front]elem
2015-06-10 00:32:17 +03:00
transpose : {a, b, c} [a][b]c -> [b][a]c
2014-04-18 02:34:25 +04:00
undefined : {a} a
width : {bits, len, elem} (fin len, fin bits,
bits >= width len) => [len]elem -> [bits]
2015-06-10 00:32:17 +03:00
zero : {a} a
(||) : {a} a -> a -> a
2014-04-18 02:34:25 +04:00