pub mod gctype;
mod heap;
mod helpers;
mod mark_sweep;
mod mem;
mod node;
mod node_link;
mod partition;
mod scope;
mod trace;
mod weak;
mod xref;
pub use {
gctype::{GcTypeInfo, GcTypeRegistry, drop_fn as gctype_drop, trace_fn as gctype_trace},
heap::GcHeap,
helpers::{GcError, GcResult},
node::{GcHead, GcNode, GcRef},
partition::{GcPartition, GcPartitionId},
scope::{GcScope, GcScopeState},
trace::{GcTrace, GcTraceCtx},
weak::GcWeak,
};
pub(crate) use helpers::unlikely;
#[doc(hidden)]
pub use gc_lite_macros::gc_type_table_internal;