FileChain

File I/O implementation based on std.file, facilitating the C standard library for file reading.

Constructors

this
this(Node node)
Undocumented in source.

Members

Functions

afterResize
void afterResize(Vector2 )
Undocumented in source. Be warned that the author may not have intended to support it.
beforeResize
void beforeResize(Vector2 )
Undocumented in source. Be warned that the author may not have intended to support it.
loadFile
ubyte[] loadFile(string filename)
Undocumented in source. Be warned that the author may not have intended to support it.
writeFile
void writeFile(string filename, const(ubyte)[] content)
Undocumented in source. Be warned that the author may not have intended to support it.

Mixins

__anonymous
mixin controlIO
Undocumented in source.

Inherited Members

From NodeChain

next
Node next(Node value)

Set the next node in chain.

next
inout(Node) next()
nextChain
inout(NodeChain) nextChain()
beforeResize
void beforeResize(Vector2 space)
Undocumented in source. Be warned that the author may not have intended to support it.
afterResize
void afterResize(Vector2 space)
Undocumented in source. Be warned that the author may not have intended to support it.
beforeDraw
void beforeDraw(Rectangle outer, Rectangle inner)
Undocumented in source. Be warned that the author may not have intended to support it.
afterDraw
void afterDraw(Rectangle outer, Rectangle inner)
Undocumented in source. Be warned that the author may not have intended to support it.
resizeImpl
void resizeImpl(Vector2 space)
Undocumented in source. Be warned that the author may not have intended to support it.
drawImpl
void drawImpl(Rectangle outer, Rectangle inner)
Undocumented in source. Be warned that the author may not have intended to support it.

From FileIO

loadFile
ubyte[] loadFile(string filename)

Load a file by its path in the filesystem.

writeFile
void writeFile(string filename, const(ubyte)[] content)

Write a file to the filesystem.

Meta