File: buffer.rbs

package info (click to toggle)
ruby-ffi 1.17.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,988 kB
  • sloc: ruby: 9,446; ansic: 7,713; xml: 151; sh: 51; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 641 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module FFI
  class Buffer < AbstractMemory
    def initialize: (AbstractMemory::type_size, ?Integer count, boolish clear) -> self
    alias self.alloc_inout self.new
    alias self.new_inout self.alloc_inout
    alias self.alloc_in self.alloc_inout
    alias self.new_in self.alloc_in
    alias self.alloc_out self.alloc_inout
    alias self.new_out self.alloc_out

    def +: (Integer) -> Buffer
    def inspect: ...
    def order: () -> AbstractMemory::order_out
             | (AbstractMemory::order_in order) -> Buffer
             | (untyped order) -> (self | Buffer)
    def slice: (Integer offset, Integer length) -> Buffer
  end
end