Sha256: e80958b114a4b6f7cea5675ddcbd828aa3320297870ac043d41adac32e7f4f92

Contents?: true

Size: 444 Bytes

Versions: 24

Compression:

Stored size: 444 Bytes

Contents

module HTTPX
  class Buffer
    extend Forwardable

    include _ToS
    include _ToStr

    @buffer: String

    attr_reader limit: Integer

    def full?: () -> bool
    def shift!: (Integer) -> void

    # delegated
    def <<: (string data) -> String
    def empty?: () -> bool
    def bytesize: () -> Integer
    def clear: () -> void
    def replace: (string) -> void

    private

    def initialize: (Integer limit) -> untyped
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
httpx-0.20.5 sig/buffer.rbs
httpx-0.20.4 sig/buffer.rbs
httpx-0.20.3 sig/buffer.rbs
httpx-0.20.2 sig/buffer.rbs
httpx-0.20.1 sig/buffer.rbs
httpx-0.20.0 sig/buffer.rbs
httpx-0.19.8 sig/buffer.rbs
httpx-0.19.7 sig/buffer.rbs
httpx-0.19.6 sig/buffer.rbs
httpx-0.19.5 sig/buffer.rbs
httpx-0.19.4 sig/buffer.rbs
httpx-0.19.3 sig/buffer.rbs
httpx-0.19.2 sig/buffer.rbs
httpx-0.19.1 sig/buffer.rbs
httpx-0.19.0 sig/buffer.rbs
httpx-0.18.7 sig/buffer.rbs
httpx-0.18.6 sig/buffer.rbs
httpx-0.18.5 sig/buffer.rbs
httpx-0.18.4 sig/buffer.rbs
httpx-0.18.3 sig/buffer.rbs