sapling-tree-pattern-match 0.1.0

Pattern match for tree structures.
Documentation
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */

#[cfg(test)]
mod tests;
mod tree_match;

pub use tree_match::find_all;
pub use tree_match::matches_full;
pub use tree_match::matches_start;
pub use tree_match::replace_all;
pub use tree_match::Item;
pub use tree_match::Match;
pub use tree_match::Placeholder;
pub use tree_match::PlaceholderExt;
pub use tree_match::Replace;