File: access.rb

package info (click to toggle)
ruby-vips 2.1.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,164 kB
  • sloc: ruby: 3,530; makefile: 3
file content (11 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
module Vips
  # The type of access an operation has to supply.
  #
  # *   `:random` means requests can come in any order.
  #
  # *   `:sequential` means requests will be top-to-bottom, but with some
  #     amount of buffering behind the read point for small non-local
  #     accesses.
  class Access < Symbol
  end
end