ez-common-ts/lib/commons/optional.d.ts
2024-01-29 00:24:18 +08:00

2091 lines
198 KiB
TypeScript

/**
* Optional monad for Javascript | Typescript.
*/
export declare const Optional: {
/**
* Creates an optional of the specified value. The value may be undefined or null.
* @return OptionalInstance<T>
*/
of<T>(value: T): {
get(): T;
orElse(elseValue: NonNullable<T>): NonNullable<T>;
then(presentFunction: (value: T) => void, notPresentFunction?: () => void): void;
ifPresent<R>(func: (val: NonNullable<T>) => R): void;
isPresent(): boolean;
filter(filterFunction: (value: T) => boolean): any | {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
};
map<R_31>(mapperFunction: (value: NonNullable<T>) => R_31): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_31;
orElse(elseValue: NonNullable<R_31>): NonNullable<R_31>;
then(presentFunction: (value: R_31) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_32>(func: (val: NonNullable<R_31>) => R_32): void;
isPresent(): boolean;
filter(filterFunction: (value: R_31) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_33>(mapperFunction: (value: NonNullable<R_31>) => R_33): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_33;
orElse(elseValue: NonNullable<R_33>): NonNullable<R_33>;
then(presentFunction: (value: R_33) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_34>(func: (val: NonNullable<R_33>) => R_34): void;
isPresent(): boolean;
filter(filterFunction: (value: R_33) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_35>(mapperFunction: (value: NonNullable<R_33>) => R_35): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_35;
orElse(elseValue: NonNullable<R_35>): NonNullable<R_35>;
then(presentFunction: (value: R_35) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_36>(func: (val: NonNullable<R_35>) => R_36): void;
isPresent(): boolean;
filter(filterFunction: (value: R_35) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_37>(mapperFunction: (value: NonNullable<R_35>) => R_37): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_37;
orElse(elseValue: NonNullable<R_37>): NonNullable<R_37>;
then(presentFunction: (value: R_37) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_38>(func: (val: NonNullable<R_37>) => R_38): void;
isPresent(): boolean;
filter(filterFunction: (value: R_37) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_39>(mapperFunction: (value: NonNullable<R_37>) => R_39): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_39;
orElse(elseValue: NonNullable<R_39>): NonNullable<R_39>;
then(presentFunction: (value: R_39) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_40>(func: (val: NonNullable<R_39>) => R_40): void;
isPresent(): boolean;
filter(filterFunction: (value: R_39) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_41>(mapperFunction: (value: NonNullable<R_39>) => R_41): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_41;
orElse(elseValue: NonNullable<R_41>): NonNullable<R_41>;
then(presentFunction: (value: R_41) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_42>(func: (val: NonNullable<R_41>) => R_42): void;
isPresent(): boolean;
filter(filterFunction: (value: R_41) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_43>(mapperFunction: (value: NonNullable<R_41>) => R_43): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_43;
orElse(elseValue: NonNullable<R_43>): NonNullable<R_43>;
then(presentFunction: (value: R_43) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_44>(func: (val: NonNullable<R_43>) => R_44): void;
isPresent(): boolean;
filter(filterFunction: (value: R_43) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_45>(mapperFunction: (value: NonNullable<R_43>) => R_45): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_45;
orElse(elseValue: NonNullable<R_45>): NonNullable<R_45>;
then(presentFunction: (value: R_45) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_46>(func: (val: NonNullable<R_45>) => R_46): void;
isPresent(): boolean;
filter(filterFunction: (value: R_45) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_47>(mapperFunction: (value: NonNullable<R_45>) => R_47): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_47;
orElse(elseValue: NonNullable<R_47>): NonNullable<R_47>;
then(presentFunction: (value: R_47) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_48>(func: (val: NonNullable<R_47>) => R_48): void;
isPresent(): boolean;
filter(filterFunction: (value: R_47) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_49>(mapperFunction: (value: NonNullable<R_47>) => R_49): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | {
get(): R_49;
orElse(elseValue: NonNullable<R_49>): NonNullable<R_49>;
then(presentFunction: (value: R_49) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_50>(func: (val: NonNullable<R_49>) => R_50): void;
isPresent(): boolean;
filter(filterFunction: (value: R_49) => boolean): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
map<R_51>(mapperFunction: (value: NonNullable<R_49>) => R_51): {
get(): undefined;
orElse(elseValue: never): never;
then(presentFunction: (value: undefined) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_1>(func: (val: never) => R_1): void;
isPresent(): boolean;
filter(filterFunction: (value: undefined) => boolean): any;
map<R_2>(mapperFunction: (value: never) => R_2): any | {
get(): R_2;
orElse(elseValue: NonNullable<R_2>): NonNullable<R_2>;
then(presentFunction: (value: R_2) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_3>(func: (val: NonNullable<R_2>) => R_3): void;
isPresent(): boolean;
filter(filterFunction: (value: R_2) => boolean): any | any;
map<R_4>(mapperFunction: (value: NonNullable<R_2>) => R_4): any | {
get(): R_4;
orElse(elseValue: NonNullable<R_4>): NonNullable<R_4>;
then(presentFunction: (value: R_4) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_5>(func: (val: NonNullable<R_4>) => R_5): void;
isPresent(): boolean;
filter(filterFunction: (value: R_4) => boolean): any | any;
map<R_6>(mapperFunction: (value: NonNullable<R_4>) => R_6): any | {
get(): R_6;
orElse(elseValue: NonNullable<R_6>): NonNullable<R_6>;
then(presentFunction: (value: R_6) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_7>(func: (val: NonNullable<R_6>) => R_7): void;
isPresent(): boolean;
filter(filterFunction: (value: R_6) => boolean): any | any;
map<R_8>(mapperFunction: (value: NonNullable<R_6>) => R_8): any | {
get(): R_8;
orElse(elseValue: NonNullable<R_8>): NonNullable<R_8>;
then(presentFunction: (value: R_8) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_9>(func: (val: NonNullable<R_8>) => R_9): void;
isPresent(): boolean;
filter(filterFunction: (value: R_8) => boolean): any | any;
map<R_10>(mapperFunction: (value: NonNullable<R_8>) => R_10): any | {
get(): R_10;
orElse(elseValue: NonNullable<R_10>): NonNullable<R_10>;
then(presentFunction: (value: R_10) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_11>(func: (val: NonNullable<R_10>) => R_11): void;
isPresent(): boolean;
filter(filterFunction: (value: R_10) => boolean): any | any;
map<R_12>(mapperFunction: (value: NonNullable<R_10>) => R_12): any | {
get(): R_12;
orElse(elseValue: NonNullable<R_12>): NonNullable<R_12>;
then(presentFunction: (value: R_12) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_13>(func: (val: NonNullable<R_12>) => R_13): void;
isPresent(): boolean;
filter(filterFunction: (value: R_12) => boolean): any | any;
map<R_14>(mapperFunction: (value: NonNullable<R_12>) => R_14): any | {
get(): R_14;
orElse(elseValue: NonNullable<R_14>): NonNullable<R_14>;
then(presentFunction: (value: R_14) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_15>(func: (val: NonNullable<R_14>) => R_15): void;
isPresent(): boolean;
filter(filterFunction: (value: R_14) => boolean): any | any;
map<R_16>(mapperFunction: (value: NonNullable<R_14>) => R_16): any | {
get(): R_16;
orElse(elseValue: NonNullable<R_16>): NonNullable<R_16>;
then(presentFunction: (value: R_16) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_17>(func: (val: NonNullable<R_16>) => R_17): void;
isPresent(): boolean;
filter(filterFunction: (value: R_16) => boolean): any | any;
map<R_18>(mapperFunction: (value: NonNullable<R_16>) => R_18): any | {
get(): R_18;
orElse(elseValue: NonNullable<R_18>): NonNullable<R_18>;
then(presentFunction: (value: R_18) => void, notPresentFunction?: (() => void) | undefined): void;
ifPresent<R_19>(func: (val: NonNullable<R_18>) => R_19): void;
isPresent(): boolean;
filter(filterFunction: (value: R_18) => boolean): any | any;
map<R_20>(mapperFunction: (value: NonNullable<R_18>) => R_20): any | any;
flatMap<R_21>(mapperFunction: (value: R_18) => R_21): R_21;
};
flatMap<R_22>(mapperFunction: (value: R_16) => R_22): R_22;
};
flatMap<R_23>(mapperFunction: (value: R_14) => R_23): R_23;
};
flatMap<R_24>(mapperFunction: (value: R_12) => R_24): R_24;
};
flatMap<R_25>(mapperFunction: (value: R_10) => R_25): R_25;
};
flatMap<R_26>(mapperFunction: (value: R_8) => R_26): R_26;
};
flatMap<R_27>(mapperFunction: (value: R_6) => R_27): R_27;
};
flatMap<R_28>(mapperFunction: (value: R_4) => R_28): R_28;
};
flatMap<R_29>(mapperFunction: (value: R_2) => R_29): R_29;
};
flatMap<R_30>(mapperFunction: (value: undefined) => R_30): R_30;
} | any;
flatMap<R_52>(mapperFunction: (value: R_49) => R_52): R_52;
};
flatMap<R_53>(mapperFunction: (value: R_47) => R_53): R_53;
};
flatMap<R_54>(mapperFunction: (value: R_45) => R_54): R_54;
};
flatMap<R_55>(mapperFunction: (value: R_43) => R_55): R_55;
};
flatMap<R_56>(mapperFunction: (value: R_41) => R_56): R_56;
};
flatMap<R_57>(mapperFunction: (value: R_39) => R_57): R_57;
};
flatMap<R_58>(mapperFunction: (value: R_37) => R_58): R_58;
};
flatMap<R_59>(mapperFunction: (value: R_35) => R_59): R_59;
};
flatMap<R_60>(mapperFunction: (value: R_33) => R_60): R_60;
};
flatMap<R_61>(mapperFunction: (value: R_31) => R_61): R_61;
};
flatMap<R_62>(mapperFunction: (value: T) => R_62): R_62;
};
};
export default Optional;