Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
api:buffer [2016/06/19 07:54]
payonel [Interface Methods]
api:buffer [2016/06/19 07:56] (current)
payonel [Instance Methods]
Line 65: Line 65:
     * a number value, e.g. `10`     * a number value, e.g. `10`
  
-    Read **n** bytes (in binary mode) or chars (in text mode) from the stream; result is returned as a string. See [[api:​non-standard-lua#​input_and_output_facilities|io.open]] for more details about how to open files in different modes.+    Read **n** bytes (in binary mode) or chars (in text mode) from the stream; result is returned as a string. See [[api:​non-standard-lua-libs#​input_and_output_facilities|io.open]] for more details about how to open files in different modes.
  
     `local chars = b:read(10)`     `local chars = b:read(10)`
Line 71: Line 71:
     * "​\*n"​ or "​\*number"​     * "​\*n"​ or "​\*number"​
  
-    Read the next series of bytes from the stream that can be interpreted as a number. Note that reading numbers is also affected by the open mode, binary or text. See [[api:​non-standard-lua#​input_and_output_facilities|io.open]] for more details about how to open files in different modes..+    Read the next series of bytes from the stream that can be interpreted as a number. Note that reading numbers is also affected by the open mode, binary or text. See [[api:​non-standard-lua-libs#​input_and_output_facilities|io.open]] for more details about how to open files in different modes..
  
     `local number = b:​read("​*n"​)`     `local number = b:​read("​*n"​)`