Difference between revisions of "Buffer:tell"

From GiderosMobile
(Created page with "'''Available since:''' Gideros 2020.2<br/> '''Class:''' Buffer<br/> === Description === Gets the position of the next file access in a [[Special:MyLanguage/Buffer|Buffer]...")
 
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(2 intermediate revisions by 2 users not shown)
Line 3: Line 3:
  
 
=== Description ===
 
=== Description ===
Gets the position of the next file access in a [[Special:MyLanguage/Buffer|Buffer]] object.
+
Gets the position of the next file access in a '''Buffer''' object.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(number) = Buffer:tell()
 
(number) = Buffer:tell()
</source>
+
</syntaxhighlight>
  
 
=== Return values ===
 
=== Return values ===
'''Returns''' (number) Position at which the next file access will take place.<br/>
+
'''Returns''' (number) position at which the next file access will take place<br/>
  
 
{{Buffer}}
 
{{Buffer}}

Latest revision as of 15:27, 13 July 2023

Available since: Gideros 2020.2
Class: Buffer

Description

Gets the position of the next file access in a Buffer object.

(number) = Buffer:tell()

Return values

Returns (number) position at which the next file access will take place