forked from extern/nushell
Flatten rows containing same sub-table columns with distinct column names. (#2684)
This commit is contained in:
committed by
GitHub
parent
b6d19cc9fa
commit
5725e55abb
@ -252,6 +252,11 @@ impl TaggedDictBuilder {
|
||||
pub fn is_empty(&self) -> bool {
|
||||
self.dict.is_empty()
|
||||
}
|
||||
|
||||
/// Checks if given key exists
|
||||
pub fn contains_key(&self, key: &str) -> bool {
|
||||
self.dict.contains_key(key)
|
||||
}
|
||||
}
|
||||
|
||||
impl From<TaggedDictBuilder> for Value {
|
||||
|
Reference in New Issue
Block a user