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 d2276fb commit da0a208Copy full SHA for da0a208
src/node_table.rs
@@ -823,6 +823,14 @@ impl NodeTable {
823
crate::table_column::new_table_column(self.flags_slice())
824
}
825
826
+ pub fn time_column_mut(&mut self) -> crate::MutableTableColumn<Time> {
827
+ crate::table_column::new_mutable_table_column(self.time_slice_mut())
828
+ }
829
+
830
+ pub fn flags_column_mut(&mut self) -> crate::MutableTableColumn<NodeFlags> {
831
+ crate::table_column::new_mutable_table_column(self.flags_slice_mut())
832
833
834
/// Clear all data from the table
835
pub fn clear(&mut self) -> Result<i32, TskitError> {
836
handle_tsk_return_value!(self.table_.clear())
0 commit comments