fj_core/operations/join/
mod.rs

1//! # Operations to join objects together
2//!
3//! See [`JoinCycle`], which is currently the only trait in this module, for
4//! more information.
5
6mod cycle;
7
8pub use self::cycle::JoinCycle;