2025-08-26 02:39:52 +09:00
|
|
|
// Basic Box Unification: re-export canonical IntegerBox
|
|
|
|
|
// Canonical implementation lives in `crate::box_trait::IntegerBox`.
|
|
|
|
|
// This module re-exports it so both `crate::box_trait::IntegerBox` and
|
|
|
|
|
// `crate::boxes::integer_box::IntegerBox` refer to the same runtime type.
|
2025-08-10 11:32:32 +09:00
|
|
|
|
2025-08-26 02:39:52 +09:00
|
|
|
pub use crate::box_trait::IntegerBox;
|