
* Added standard List library and list comprehensions Added List library. Flatmaps WIP Fixed dependency in flat_map fcode generation Updated tests to use custom list lib Added comprehension test Added stdlib sanity Test * Extended stdlib for lists. Added error message for redefinition of stdlibx * Fixed type template * Improved stdlib * More functions * Fixed cyclic includes * Refixed imports and added few tests * Added fail test * Undelete removed type spec * Remove typo * Fix iter function * Fixed typo * Added if guards and let statements in list comp * Added more fail tests * Option stliv * 2 and 3 tuple stdlib * Updated stdlib to new syntax. Added recursor and changed all/any functions * Fixed performance issues. Changed include management * Fixed hash type
8 lines
263 B
Plaintext
8 lines
263 B
Plaintext
// This contract should be compiled with no_implicit_stdlib option.
|
|
// It should include Lists.aes implicitly however, because Option.aes depends on it.
|
|
include "Option.aes"
|
|
|
|
contract Test =
|
|
entrypoint i_should_build() =
|
|
List.is_empty(Option.to_list(None))
|