用法:
Mmap.Anonymous(name::AbstractString="", readonly::Bool=false, create::Bool=true)
创建一个类似于 IO
的对象,用于创建与
中使用的文件无关的 zeroed-out mmapped-memory。 mmap
SharedArray
用于创建共享内存数组。
例子
julia> using Mmap
julia> anon = Mmap.Anonymous();
julia> isreadable(anon)
true
julia> iswritable(anon)
true
julia> isopen(anon)
true
相关用法
- Julia Mmap.mmap用法及代码示例
- Julia Math.clamp!用法及代码示例
- Julia Math.rem2pi用法及代码示例
- Julia Matrix方法用法及代码示例
- Julia Math.sincos方法用法及代码示例
- Julia Multimedia.istextmime用法及代码示例
- Julia Math.ldexp用法及代码示例
- Julia Math.cbrt用法及代码示例
- Julia Meta.quot用法及代码示例
- Julia Math.mod2pi用法及代码示例
- Julia Multimedia.showable用法及代码示例
- Julia Math.frexp用法及代码示例
- Julia Math.modf用法及代码示例
- Julia Math.exponent用法及代码示例
- Julia Multimedia.MIME用法及代码示例
- Julia MathConstants.ℯ用法及代码示例
- Julia Math.clamp用法及代码示例
- Julia MathConstants.catalan用法及代码示例
- Julia Math.hypot用法及代码示例
- Julia MathConstants.pi用法及代码示例
- Julia MPFR.BigFloat方法用法及代码示例
- Julia Math.@evalpoly用法及代码示例
- Julia Math.deg2rad用法及代码示例
- Julia MathConstants.golden用法及代码示例
- Julia MathConstants.eulergamma用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Mmap.Anonymous — Type。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。