Difference between revisions of "ContainerType"

m (Missing periods.)
m (Actually ByteData isn't a thing?)
Line 1: Line 1:
 
{{newin|[[0.11.0]]|110|type=enum}}
 
{{newin|[[0.11.0]]|110|type=enum}}
Return type of [[love.data.decompress]] and [[love.data.compress]].
+
Return type of various encoding and decoding functions.[[love.data.decompress]] and [[love.data.compress]].
 
{{notice|This is unofficial documentation. This might be not accurate!}}
 
{{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 [[Data]].
 
;string: Return type is [[string]].
 
;string: Return type is [[string]].
 
== Notes ==
 
== Notes ==
Line 12: Line 12:
 
* [[love.data.decompress]]
 
* [[love.data.decompress]]
 
* [[CompressedData]]
 
* [[CompressedData]]
* [[ByteData]]
 
 
[[Category:Enums]]
 
[[Category:Enums]]
 
{{#set:Description=Return type of [[love.data.decompress|decompress]] and [[love.data.compress|compress]]}}
 
{{#set:Description=Return type of [[love.data.decompress|decompress]] and [[love.data.compress|compress]]}}
 
== Other Languages ==
 
== Other Languages ==
 
{{i18n|ContainerType}}
 
{{i18n|ContainerType}}

Revision as of 15:32, 8 January 2018

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

Return type of various encoding and decoding functions.love.data.decompress and love.data.compress.

O.png This is unofficial documentation. This might be not accurate!  


Constants

data
Return type is Data.
string
Return type is string.

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.

See Also

Other Languages