The OpenD Programming Language

MboxMessages

An mbox file is a concatenated list of individual email messages. This is a range of messages given the content of one of those files.

struct MboxMessages {
immutable(ubyte)[][] linesRemaining;
IncomingEmailMessage currentFront;
}

Constructors

this
this(immutable(ubyte)[] data)

Members

Functions

empty
bool empty()
front
IncomingEmailMessage front()
popFront
void popFront()

Meta