enum

Vips::Enums::Access

Inherits Enum / Comparable / Value / Object

Constants

Random = 0

Requests can come in any order

Sequential = 1

Means requests will be top-to-bottom, but with some amount of buffering behind the read point for small non-local accesses.

SequentialUnbuffered = 2

Top-to-bottom without a buffer.

Instance methods

random?

Returns true if this enum value equals Random

Source
sequential?

Returns true if this enum value equals Sequential

Source
sequential_unbuffered?

Returns true if this enum value equals SequentialUnbuffered

Source