readUnihexFile

@NotNull
open fun readUnihexFile(@NotNull path: @NotNull Path): @NotNull UnihexGlyphs

Reads a unihex file from a Path.

Return

The glyphs

Parameters

path

The path to read from

Throws

If an I/O error occurs


@NotNull
open fun readUnihexFile(bin: @NotNull Array<Byte>): @NotNull UnihexGlyphs

Reads a unihex file from a byte array.

Return

The glyphs

Parameters

bin

The byte array to read from

Throws

If an I/O error occurs


@NotNull
open fun readUnihexFile(@NotNull in: @NotNull InputStream): @NotNull UnihexGlyphs

Reads a unihex file from an InputStream.

Return

The glyphs

Parameters

in

The input stream to read from

Throws

If an I/O error occurs