nim-rlp/rlp/types.nim

7 lines
83 B
Nim
Raw Normal View History

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