Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/node_table.rs
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ impl NodeTable {
/// Obtain a vector containing the indexes ("ids") of all nodes
/// satisfying a certain criterion.
#[deprecated(
since = "0.16.1",
since = "0.16.2",
note = "Prefer NodeTable::iter and iterator operations"
)]
pub fn create_node_id_vector<'t>(
Expand Down
2 changes: 1 addition & 1 deletion src/table_collection.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1577,7 +1577,7 @@ impl TableCollection {
/// assert_eq!(samples[0], 1);
/// ```
#[deprecated(
since = "0.16.1",
since = "0.16.2",
note = "Prefer TableCollection::node_iter and iterator operations"
)]
pub fn create_node_id_vector<'t>(
Expand Down
2 changes: 1 addition & 1 deletion src/trees/treeseq.rs
Original file line number Diff line number Diff line change
Expand Up @@ -610,7 +610,7 @@ impl TreeSequence {
///
/// See [`crate::TableCollection::create_node_id_vector`].
#[deprecated(
since = "0.16.1",
since = "0.16.2",
note = "Prefer TreeSequence::node_iter and iterator operations"
)]
pub fn create_node_id_vector<'ts>(
Expand Down
Loading