类 OpenSSL::Buffering::Buffer

一个保留二进制编码的缓冲区。

常量

BINARY

公共类方法

new() 点击切换源代码
调用超类方法 String::new
# File ext/openssl/lib/openssl/buffering.rb, line 29
def initialize
  super

  force_encoding(BINARY)
end

公共实例方法

<<(string) 点击切换源代码
调用超类方法 String#<<
# File ext/openssl/lib/openssl/buffering.rb, line 35
def << string
  if string.encoding == BINARY
    super(string)
  else
    super(string.b)
  end

  return self
end
也称为: concat
concat(string)
别名: <<