Mmap class

Constructors

Mmap(String fileName, {int prot = PROT_READ, int flags = MAP_SHARED, int offset = 0})
factory

Properties

hashCode int
The hash code for this object.
no setterinherited
inner MmapInner
no setter
length int
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

asBytes() Uint8List
close() → void
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

create(String fileName, {int prot = PROT_READ, int flags = MAP_SHARED, int offset = 0}) Future<Mmap>

Constants

MAP_FILE → const int
MAP_FIXED → const int
MAP_POPULATE → const int
MAP_PRIVATE → const int
MAP_SHARED → const int
PROT_EXEC → const int
PROT_NONE → const int
PROT_READ → const int
PROT_WRITE → const int