com-croftsoft-core 0.14.0

A core library of highly reusable code
Documentation
// =============================================================================
//! - A* algorithm for path planning
//! - This module is documented in the book [`Advanced Java Game Programming`]
//!
//! # Metadata
//! - Copyright: © 2022 [`CroftSoft Inc`]
//! - Author: [`David Wallace Croft`]
//! - Rust version: 2022-11-10
//! - Rust since: 2022-10-21
//!
//! # History
//! - Adapted from the Java package com.croftsoft.core.ai.astar
//!   - In the Java-based [`CroftSoft Core Library`]
//!
//! [`Advanced Java Game Programming`]: https://croftsoft.com/library/books/ajgp
//! [`CroftSoft Core Library`]: https://www.croftsoft.com/library/code/
//! [`CroftSoft Inc`]: https://www.croftsoft.com/
//! [`David Wallace Croft`]: https://www.croftsoft.com/people/david/
// =============================================================================

pub mod constants;
pub mod functions;
pub mod methods;
pub mod operations;
pub mod structures;
pub mod trait_imps;
pub mod traits;
pub mod types;