MCPcopy Create free account
hub / github.com/apache/arrow / from_buffer

Method from_buffer

cpp/gdb_arrow.py:810–817  ·  view source on GitHub ↗

Create a null bitmap from a Buffer (or None if missing, in which case all values are True).

(cls, buf, offset, length)

Source from the content-addressed store, hash-verified

808
809 @classmethod
810 def from_buffer(cls, buf, offset, length):
811 """
812 Create a null bitmap from a Buffer (or None if missing,
813 in which case all values are True).
814 """
815 if buf is None:
816 return cls(buf, offset, length)
817 return super().from_buffer(buf, offset, length)
818
819
820KeyValue = namedtuple('KeyValue', ('key', 'value'))

Callers

nothing calls this directly

Calls 1

from_bufferMethod · 0.45

Tested by

no test coverage detected