Difference between revisions of "Zlib.crc32"

From GiderosMobile
m (Text replacement - "<source" to "<syntaxhighlight")
 
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2015.04.18<br/>
'''<translate>Available since</translate>:''' Gideros 2015.04.18<br/>
+
'''Class:''' [[zlib]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/zlib|zlib]]<br/>
+
 
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Without any parameters, returns the inicial crc32 value.
+
Without any parameters, returns the initial crc32 value.
Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.</translate>
 
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
 
(string) = zlib.crc32(crc32,buffer)
 
(string) = zlib.crc32(crc32,buffer)
</source>
+
</syntaxhighlight>
=== <translate>Parameters</translate> ===
+
 
'''crc32''': (number) <translate>crc32 value</translate> '''optional'''<br/>
+
Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.
'''buffer''': (string) <translate>buffer to modify value</translate> '''optional'''<br/>
+
 
=== <translate>Return values</translate> ===
+
=== Parameters ===
'''<translate>Returns</translate>''' (string) <translate>without parameters returns initial value</translate><br/>
+
'''crc32''': (number) crc32 value '''optional'''<br/>
 +
'''buffer''': (string) buffer to modify value '''optional'''<br/>
 +
 
 +
=== Return values ===
 +
'''Returns''' (string) without parameters returns initial value<br/>
  
 
{{Zlib}}
 
{{Zlib}}

Latest revision as of 23:34, 1 December 2023

Available since: Gideros 2015.04.18
Class: zlib

Description

Without any parameters, returns the initial crc32 value.

(string) = zlib.crc32(crc32,buffer)

Call to update the crc32 value, crc is the current value, buffer is passed to crc32 zlib function and the updated value is returned.

Parameters

crc32: (number) crc32 value optional
buffer: (string) buffer to modify value optional

Return values

Returns (string) without parameters returns initial value