|
BehaviorTree
Core Library to create and execute Behavior Trees
|
Simple wildcard matching function supporting '*' and '?'. More...
#include <cstddef>#include <cstdint>#include <string_view>#include <vector>
Go to the source code of this file.
Functions | |
| bool | wildcards_match (std::string_view str, std::string_view pattern) |
Simple wildcard matching function supporting '*' and '?'.
This file provides a function to match strings against patterns containing wildcard characters:
The implementation uses recursion with memoization to efficiently handle overlapping subproblems.