1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#[cfg(test)]
mod tests;

/// This module contains light borders
/// #Example
/// ```
/// use box_drawing::light;
/// let expected = "┌─┐";
/// let actual = format!("{}{}{}", light::DOWN_RIGHT, light::HORIZONTAL, light::DOWN_LEFT);
/// assert_eq!(expected, actual);
/// ```
pub mod light;

/// This module contains heavy (bold) borders
pub mod heavy;

/// This module contains doubled borders
pub mod double;

/// Contains rounded corners
pub mod arc;