SYNOPSIS

        use Data::Object::Immutable;
    
        my $object = Data::Object::Immutable->new([1..9]);
    
        $object->isa('Data::Object::Array'); # 1
        $object->count; # 9
    
        $object->[0]++; # fatal ... modification of a read-only value attempted

DESCRIPTION

    Data::Object::Immutable provides a mechanism for making any
    Data::Object data type object immutable. Note: This is an early release
    available for testing and feedback and as such is subject to change.

