data_type 0.25.0

Collection of primal data types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Smoke testing of the package.

#[ test ]
fn smoke_test()
{
  // Verify crate imports and basic functionality
  use data_type as the_module;

  // Verify Either is accessible (when feature enabled)
  #[ cfg( feature = "either" ) ]
  {
    let _ = the_module ::Either ::Left::< i32, () >( 42 );
  }

  // Basic compilation smoke test - if this compiles and runs, the crate works
}