Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-ops/src/chunked_array/binary/mod.rs
8390 views
1
mod get;
2
mod namespace;
3
mod slice;
4
5
pub use get::bin_get;
6
pub use namespace::*;
7
use polars_core::prelude::*;
8
9
pub trait AsBinary {
10
fn as_binary(&self) -> &BinaryChunked;
11
}
12
13
impl AsBinary for BinaryChunked {
14
fn as_binary(&self) -> &BinaryChunked {
15
self
16
}
17
}
18
19