use std::any::Any;
use crate::{array::*, datatypes::DataType};
use super::Scalar;
#[derive(Debug, Clone)]
pub struct DictionaryScalar<K: DictionaryKey> {
value: Option<Box<dyn Scalar>>,
phantom: std::marker::PhantomData<K>,
data_type: DataType,
}
impl<K: DictionaryKey> PartialEq for DictionaryScalar<K> {
fn eq(&self, other: &Self) -> bool {
(self.data_type == other.data_type) && (self.value.as_ref() == other.value.as_ref())
}
}
impl<K: DictionaryKey> DictionaryScalar<K> {
#[inline]
pub fn new(data_type: DataType, value: Option<Box<dyn Scalar>>) -> Self {
Self {
value,
phantom: std::marker::PhantomData,
data_type,
}
}
pub fn value(&self) -> Option<&Box<dyn Scalar>> {
self.value.as_ref()
}
}
impl<K: DictionaryKey> Scalar for DictionaryScalar<K> {
fn as_any(&self) -> &dyn Any {
self
}
fn is_valid(&self) -> bool {
self.value.is_some()
}
fn data_type(&self) -> &DataType {
&self.data_type
}
}