class Prism::Source

def slice(byte_offset, length)

Experimental RBS support (using type sampling data from the type_fusion project).

def slice: (Integer byte_offset, Integer length) -> String

This signature was generated using 38 samples from 1 application.

byte length.
Perform a byteslice on the source code using the given byte offset and
def slice(byte_offset, length)
  source.byteslice(byte_offset, length)
end