stri_read_raw: [DRAFT API] Read Whole Text File as Raw
Description
Reads a text file as-is, with no conversion or text line
spliting.
[THIS IS AN EXPERIMENTAL FUNCTION]
Usage
stri_read_raw(fname)
Arguments
fname
file name
Value
Returns a raw vector.
Details
After reading a text file into memory (vast majority of
them will fit into RAM without any problems), you may
perform e.g. encoding detection (cf.
stri_enc_detect2), conversion (cf.
stri_encode), and e.g. split it into text
lines with stri_split_lines1.