We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c7083f commit 1d12841Copy full SHA for 1d12841
vortex-vector/src/datum.rs
@@ -143,6 +143,7 @@ impl Datum {
143
}
144
145
146
+ /// Converts the `Datum` into a `TypedDatum`.
147
pub fn into_typed(self) -> TypedDatum {
148
match self {
149
Datum::Scalar(sc) => match sc {
@@ -269,7 +270,7 @@ datum!(FixedSizeList);
269
270
datum!(Struct);
271
272
impl PrimitiveDatum {
- // ptype from datum
273
+ /// ptype from datum
274
pub fn ptype(&self) -> PType {
275
276
PrimitiveDatum::Scalar(sc) => sc.ptype(),
0 commit comments