/** * 插入结果 * @filename: src/data-structure/RBTree/InsertResult.ts * @author: Mr Prince * @date: 2022-02-07 17:00:58 */ declare class InsertResult { added: boolean; replaced: boolean; constructor(wasAdded: boolean, wasReplaced: boolean); isAdded(): boolean; isReplaced(): boolean; } export default InsertResult;