Add documentation to many nodes (#3338)

This commit is contained in:
Keavon Chambers
2025-11-03 15:51:50 -08:00
committed by GitHub
parent 055d543117
commit 6d669ad734
13 changed files with 146 additions and 71 deletions

View File

@@ -4,7 +4,8 @@ use crate::{ExtractFootprint, Node, transform::Footprint};
use std::marker::PhantomData;
// TODO: Rename to "Passthrough"
/// Passes-through the input value without changing it. This is useful for rerouting wires for organization purposes.
/// Passes-through the input value without changing it.
/// This is useful for rerouting wires for organization purposes.
#[node_macro::node(skip_impl)]
fn identity<'i, T: 'i + Send>(value: T) -> T {
value