| Title: | Provides 'mio' C++11 Header Files | 
| Version: | 0.4.0 | 
| Description: | Provides header files of 'mio', a cross-platform C++11 header-only library for memory mapped file IO https://github.com/mandreyel/mio. | 
| License: | GPL-3 | 
| Copyright: | file COPYRIGHTS | 
| Encoding: | UTF-8 | 
| RoxygenNote: | 7.1.1 | 
| URL: | https://github.com/privefl/rmio | 
| BugReports: | https://github.com/privefl/rmio/issues | 
| Imports: | bigassertr, ff | 
| Suggests: | testthat (≥ 3.0.0) | 
| Config/testthat/edition: | 3 | 
| NeedsCompilation: | no | 
| Packaged: | 2022-02-17 12:41:50 UTC; au639593 | 
| Author: | Florian Privé [aut, cre] | 
| Maintainer: | Florian Privé <florian.prive.21@gmail.com> | 
| Repository: | CRAN | 
| Date/Publication: | 2022-02-17 13:02:03 UTC | 
rmio: Provides 'mio' C++11 Header Files
Description
Provides header files of 'mio', a cross-platform C++11 header-only library for memory mapped file IO <https://github.com/mandreyel/mio>.
Author(s)
Maintainer: Florian Privé florian.prive.21@gmail.com
See Also
Useful links:
Create or resize files
Description
Create or resize files
Usage
file_create(file, size)
file_resize(file, size)
file_resize_off(file, size)
Arguments
| file | Path name. | 
| size | Size in bytes. | 
Value
Input file, invisibly.
Examples
tmp <- tempfile()
file_create(tmp, 10)
file.size(tmp)
file_resize(tmp, 5)
file.size(tmp)
file_resize_off(tmp, 10)
file.size(tmp)