mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 02:15:08 +00:00

Similar to IterationDecision, this can be returned from callbacks passed to recursive traversal functions to signal how to proceed.
19 lines
243 B
C++
19 lines
243 B
C++
/*
|
|
* Copyright (c) 2021, sin-ack <sin-ack@protonmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
namespace AK {
|
|
|
|
enum class RecursionDecision {
|
|
Recurse,
|
|
Continue,
|
|
Break,
|
|
};
|
|
|
|
}
|
|
|
|
using AK::RecursionDecision;
|