Difference between revisions of "ContainerType"

m (Missing periods.)
m (Ok so ByteData is actually a thing)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{newin|[[0.11.0]]|110|type=enum}}
+
{{newin|[[11.0]]|110|type=enum}}
Return type of [[love.data.decompress]] and [[love.data.compress]].
+
Return type of various data-returning functions.
{{notice|This is unofficial documentation. This might be not accurate!}}
 
 
== Constants ==
 
== Constants ==
;data: Return type is [[Data]]. [[CompressedData]] for [[love.data.compress]] and [[ByteData]] for [[love.data.decompress]].
+
;data: Return type is [[ByteData]].
 
;string: Return type is [[string]].
 
;string: Return type is [[string]].
 
== Notes ==
 
== Notes ==
Use "data" return type if you want to pass the data to another thread, and use "string" return type if you want to use it immediately, like sending it to network.
+
Use '''data''' return type if you want to pass a reference to the data to another thread or LÖVE function, and use '''string''' return type if you want to use it immediately, like sending it to network.
 
== See Also ==
 
== See Also ==
 
* [[parent::love.data]]
 
* [[parent::love.data]]
 
* [[love.data.compress]]
 
* [[love.data.compress]]
 
* [[love.data.decompress]]
 
* [[love.data.decompress]]
* [[CompressedData]]
+
* [[love.data.encode]]
* [[ByteData]]
+
* [[love.data.decode]]
 +
* [[love.data.pack]]
 +
* [[love.filesystem.read]]
 +
* [[(File):read|File:read]]
 
[[Category:Enums]]
 
[[Category:Enums]]
{{#set:Description=Return type of [[love.data.decompress|decompress]] and [[love.data.compress|compress]]}}
+
{{#set:Description=Return type of data-returning functions.}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|ContainerType}}
 
{{i18n|ContainerType}}

Latest revision as of 12:42, 11 June 2018

Available since LÖVE 11.0
This enum is not supported in earlier versions.

Return type of various data-returning functions.

Constants

data
Return type is ByteData.
string
Return type is string.

Notes

Use data return type if you want to pass a reference to the data to another thread or LÖVE function, and use string return type if you want to use it immediately, like sending it to network.

See Also

Other Languages