Skip to content

Add NonNegativeInt (primitives) #69

@vhrcgcom

Description

@vhrcgcom

Description

Implement NonNegativeInt as a ValueObject in the primitives module.

Spec: i64 >= 0

Implementation checklist

  • Create src/primitives/nonnegativeint.rs
  • Implement ValueObject trait
  • Add #[cfg_attr(feature = "serde", derive(serde::Serialize, serde::Deserialize))]
  • Export from src/primitives/mod.rs and prelude
  • Unit tests: valid input · empty input · invalid format · normalisation
  • Doc comment with # Example block
  • Update status in ROADMAP.md from ⬜ to ✅

Implementation detail

Input / Output

Type Alias
Input i64 NonNegativeIntInput
Output i64 NonNegativeIntOutput

Normalization

None.

Validation

  • Must be >= 0. Negative values are rejected.

Extra methods

None beyond the trait.

References

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions