Skip to main content

qubit_case/
lib.rs

1// =============================================================================
2//    Copyright (c) 2025 - 2026 Haixing Hu.
3//
4//    SPDX-License-Identifier: Apache-2.0
5//
6//    Licensed under the Apache License, Version 2.0.
7// =============================================================================
8//! # Qubit Case
9//!
10//! Provides naming style detection and conversion helpers for ASCII
11//! identifiers.
12
13pub mod case_style;
14/// Case style detection, parsing, and conversion utilities.
15mod case_style_error;
16pub use case_style_error::CaseStyleError;
17
18pub use case_style::{
19    CaseStyle,
20    LOWER_CAMEL,
21    LOWER_HYPHEN,
22    LOWER_UNDERSCORE,
23    UPPER_CAMEL,
24    UPPER_UNDERSCORE,
25};