A model of Rebol string implementation (written in Java):

class RebolStringStorage {
    char [] storage;
    int storageLength;
    int stringLength;
}

class RebolString {
    int position;
    RebolStringStorage storage;
}

Regards
    Ladislav






Reply via email to