flat_map

lazy.flat_map { |obj| block } â a_lazy_enumerator Instance Public methods Returns a new lazy enumerator with the concatenated results of running block once for every element in lazy. ["foo", "bar"].lazy.flat_map {|i| i.each_char.lazy}.force #=> ["f", "o", "o", "b", "a", "r"] A value x returned by block is decomposed if either of the following conditions is true: a) <i>x</i> responds to both each and force, which means that <i>x</i> is a lazy enu

[]

[](key) Instance Public methods Also aliased as: _get

new

new(secret, *signature_key_or_options) Class Public methods Initialize a new MessageEncryptor. secret must be at least as long as the cipher key size. For the default 'aes-256-cbc' cipher, this is 256 bits. If you are using a user-entered secret, you can generate a suitable key with OpenSSL::Digest::SHA256.new(user_secret).digest or similar. Options: :cipher - Cipher to use. Can be any cipher returned by OpenSSL::Cipher.ciphers. Default is 'aes-256-cbc'. :serializer - Object

createTextNode

createTextNode(arg0) Instance Public methods IXMLDOMText createTextNode create a text node BSTR arg0 --- data [IN]

listboxborder

listboxborder(width) Instance Public methods set listbox borders

finish

finish(name, id, payload) Instance Public methods

lstat

lstat(*args, &block) Instance Public methods Alias for: process

sym

sym(symbol) Instance Public methods Returns the address as an Integer from any handlers with the function named symbol. Raises a DLError if the handle is closed.

tell

strio.pos â integerstrio.tell â integer Instance Public methods Returns the current offset (in bytes) of strio.

unlink

unlink(path) Instance Public methods See IO.unlink when path is a file. See Dir.unlink when path is a directory.