Type:Byte: Difference between revisions

From Resonite Wiki
add more info, remove template
m cat
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
A Byte is a number that goes from 0 to 255 as an Unsigned 8-bit integer. A byte contains 8 bits which are 1 or 0. See [[https://en.wikipedia.org/wiki/Byte Byte on Wikipedia]] for more info.
A '''byte''' is an [https://en.wikipedia.org/wiki/Signedness unsigned], 8-bit integer that can take any value from <code>0</code> to <code>255</code>.
 
Unlike the larger integer types, bytes do not have a vector analogue in-game.
 
== See Also ==
 
* [[Type:SByte]]


[[Category:Type]]
[[Category:Type]]
[[Category:Value types]]

Latest revision as of 17:28, 18 April 2025

A byte is an unsigned, 8-bit integer that can take any value from 0 to 255.

Unlike the larger integer types, bytes do not have a vector analogue in-game.

See Also