1
0
Fork 0
mirror of synced 2025-09-23 12:18:44 +00:00
ZoKrates/zokrates_stdlib/stdlib/utils/casts/1024to256array.zok
2022-04-07 16:04:40 +02:00

3 lines
No EOL
156 B
Text

def main(bool[1024] input) -> (bool[256], bool[256], bool[256], bool[256]) {
return input[0..256], input[256..512], input[512..768], input[768..1024];
}