Public Class Methods : SstOSPtr

* new
	"ACTION
		Answer a new instance of the receiver referencing a Smalltalk
		ByteArray of %fixedSize bytes. The result will initially be
		zero-relative.

	RETURN VALUE
		<instance of self>"
Categories
	SST-API Developer
* new: size
	"ACTION
		Answer a new instance of the receiver referencing a Smalltalk
		ByteArray of @size bytes. The result will initially be zero-relative.

	PARAMETERS
		size : <Integer>

	RETURN VALUE
		<instance of self>"
Categories
	SST-API Developer
* on: buffer
	"ACTION
		Answer a new instance of the receiver on @buffer. The receiver's
		size will that of @buffer. The result will initially be zero-relative.

	PARAMETERS
		buffer : <byte object>

	RETURN VALUE
		<instance of self>"
Categories
	SST-API Developer
* on: buffer size: size
	"ACTION
		Answer a new instance of the receiver on @buffer which contains
		at least @size bytes. Note that if @buffer is an OSObject, 
		its current offset is ignored and the new instance returned will
		operate on @buffer's eference starting at the first byte.
		The result will initially be zero-relative.

	PARAMETERS
		buffer : <byte object>
		size : <Integer>

	RETURN VALUE
		<instance of self>"
Categories
	SST-API Developer
* on: buffer size: size offset: offset
	"ACTION
		Answer a new instance of the receiver on @buffer which
		contains at least @size + @offset bytes. Note that if  @buffer
		is an OSObject, its current offset is ignored and @offset is used.
		The result will initially be zero-relative.

	PARAMETERS
		buffer : <byte object>
		size : <Integer>
		offset : <Integer>

	RETURN VALUE
		<instance of self>"
Categories
	SST-API Developer

[FIRST] [PREV] [NEXT] [LAST]