Add store_csv_line method for File
This commit is contained in:
@ -100,7 +100,7 @@
|
||||
<argument index="0" name="delim" type="String" default="","">
|
||||
</argument>
|
||||
<description>
|
||||
Returns the next value of the file in CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma).
|
||||
Returns the next value of the file in CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long.
|
||||
</description>
|
||||
</method>
|
||||
<method name="get_double" qualifiers="const">
|
||||
@ -327,6 +327,17 @@
|
||||
Stores the given array of bytes in the file.
|
||||
</description>
|
||||
</method>
|
||||
<method name="store_csv_line">
|
||||
<return type="void">
|
||||
</return>
|
||||
<argument index="0" name="values" type="PoolStringArray" default="","">
|
||||
</argument>
|
||||
<argument index="1" name="delim" type="String" default="","">
|
||||
</argument>
|
||||
<description>
|
||||
Store the given [PoolStringArray] in the file as a line formatted in the CSV (Comma Separated Values) format. You can pass a different delimiter to use other than the default "," (comma), it should be one character long.
|
||||
</description>
|
||||
</method>
|
||||
<method name="store_double">
|
||||
<return type="void">
|
||||
</return>
|
||||
|
||||
Reference in New Issue
Block a user