//! Collection of simple utilities for various properties and calculations.
use EdgeType;
/// Returns the number of edges in a [complete graph] given the vertex count and
/// directionality.
///
/// [complete graph]: https://en.wikipedia.org/wiki/Complete_graph
///
/// # Examples
///
/// ```
/// use gryf::core::{facts::complete_graph_edge_count, marker::Undirected};
///
/// assert_eq!(complete_graph_edge_count::<Undirected>(5), 10);
/// ```