erg/crates/erg_compiler/lib/std/_erg_bytes.py
Shunsuke Shibayama dea05ef6e8 Add Bytes
2023-01-16 10:37:08 +09:00

3 lines
90 B
Python

class Bytes(bytes):
def try_new(*b): # -> Result[Nat]
return Bytes(bytes(*b))