Class: Polars::BinaryNameSpace
- Inherits:
-
Object
- Object
- Polars::BinaryNameSpace
- Defined in:
- lib/polars/binary_name_space.rb
Overview
Series.bin namespace.
Instance Method Summary collapse
-
#contains(lit) ⇒ Series
Check if binaries in Series contain a binary substring.
-
#decode(encoding, strict: true) ⇒ Series
Decode a value using the provided encoding.
-
#encode(encoding) ⇒ Series
Encode a value using the provided encoding.
-
#ends_with(sub) ⇒ Series
Check if string values end with a binary substring.
-
#starts_with(sub) ⇒ Series
Check if values start with a binary substring.
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Polars::ExprDispatch
Instance Method Details
#contains(lit) ⇒ Series
Check if binaries in Series contain a binary substring.
19 20 21 |
# File 'lib/polars/binary_name_space.rb', line 19 def contains(lit) super end |
#decode(encoding, strict: true) ⇒ Series
Decode a value using the provided encoding.
52 53 54 |
# File 'lib/polars/binary_name_space.rb', line 52 def decode(encoding, strict: true) super end |
#encode(encoding) ⇒ Series
Encode a value using the provided encoding.
62 63 64 |
# File 'lib/polars/binary_name_space.rb', line 62 def encode(encoding) super end |
#ends_with(sub) ⇒ Series
Check if string values end with a binary substring.
29 30 31 |
# File 'lib/polars/binary_name_space.rb', line 29 def ends_with(sub) super end |
#starts_with(sub) ⇒ Series
Check if values start with a binary substring.
39 40 41 |
# File 'lib/polars/binary_name_space.rb', line 39 def starts_with(sub) super end |