mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
a2a553b286
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;
|