Handbook Glossary
factorcode.org
sampleCount>> ( object -- value )


Vocabulary
accessors

Inputs
objectan object


Outputs
valuean object


Definition
IN: accessors

GENERIC: sampleCount>> ( object -- value )


Methods
USING: accessors alien.c-types classes.struct
classes.struct.private math raylib.ffi ;

M: Music sampleCount>>
T{ struct-slot-spec
{ name "sampleCount" }
{ offset 16 }
{ class integer }
{ initial 0 }
{ type uint }
} read-struct-slot ; inline


USING: accessors alien.c-types classes.struct
classes.struct.private math raylib.ffi ;

M: Sound sampleCount>>
T{ struct-slot-spec
{ name "sampleCount" }
{ offset 16 }
{ class integer }
{ initial 0 }
{ type uint }
} read-struct-slot ; inline


USING: accessors alien.c-types classes.struct
classes.struct.private math raylib.ffi ;

M: Wave sampleCount>>
T{ struct-slot-spec
{ name "sampleCount" }
{ offset 0 }
{ class integer }
{ initial 0 }
{ type uint }
} read-struct-slot ; inline