nim-rlp/rlp/types.nim

7 lines
83 B
Nim
Raw Normal View History

2018-03-26 18:14:51 +03:00
import ranges
export ranges
2018-02-16 17:28:19 +02:00
2018-01-25 21:22:13 +02:00
type
Bytes* = seq[byte]
2018-03-26 18:14:51 +03:00
BytesRange* = Range[byte]