Effect-TS provides various methods to filter values inside an Option, allowing you to apply transformations, predicates, or checks on the optional value. These functions help ensure that only relevant data is retained while discarding None values or those that don't meet specified conditions. In this article, we'll explore four key functions for filtering Options: O.partitionMap, O.filterMap, O.filter, and O.exists.
The O.partitionMap function allows you to partition an Option into a tuple of two Options based on a mapping function that returns an Either. The Either.left values are partitioned into the first Option, while Either.right values go into the second Option. If the original Option is None, both partitions are None.
function filtering_ex01() { const some = O.some(1); // Create an Option containing the value 1 const none = O.none(); // Create an Option representing no value const toEither = (n: number) => (n % 2 === 0 ? E.left(n) : E.right(n)); console.log(pipe(some, O.partitionMap(toEither))); // Output: [None, Some(1)] (1 is odd, so it goes to the right) console.log(pipe(none, O.partitionMap(toEither))); // Output: [None, None] (since the Option is None) }
This function is useful when you need to apply a mapping that categorizes values, while separating them into two groups—those that satisfy a condition and those that don't.
The O.filterMap function applies a transformation function to the value inside an Option. If the function returns Some, the value is retained; if it returns None, the value is filtered out. If the original Option is None, the result remains None.
function filtering_ex02() { const some = O.some(1); // Create an Option containing the value 1 const none = O.none(); // Create an Option representing no value const toEven = (n: number) => (n % 2 === 0 ? O.some(n) : O.none()); console.log(pipe(some, O.filterMap(toEven))); // Output: None (since 1 is not even) console.log(pipe(O.some(2), O.filterMap(toEven))); // Output: Some(2) (since 2 is even) console.log(pipe(none, O.filterMap(toEven))); // Output: None (since the original Option is None) }
This function is helpful when you want to both transform and filter the value inside an Option based on specific conditions.
The O.filter function checks if the value inside an Option satisfies a given predicate. If the predicate is satisfied, it returns the original Option; otherwise, it returns None. If the original Option is None, it remains None.
function filtering_ex03() { const some = O.some(1); // Create an Option containing the value 1 const none = O.none(); // Create an Option representing no value const isEven = (n: number) => n % 2 === 0; console.log(pipe(some, O.filter(isEven))); // Output: None (since 1 is not even) console.log(pipe(O.some(2), O.filter(isEven))); // Output: Some(2) (since 2 is even) console.log(pipe(none, O.filter(isEven))); // Output: None (since the original Option is None) }
The O.exists function checks if a value inside an Option satisfies a predicate, returning true if it does, and false if it doesn't. If the Option is None, it returns false.
function filtering_ex04() { const some = O.some(1); // Create an Option containing the value 1 const none = O.none(); // Create an Option representing no value const isEven = (n: number) => n % 2 === 0; console.log(pipe(some, O.exists(isEven))); // Output: false (since 1 is not even) console.log(pipe(O.some(2), O.exists(isEven))); // Output: true (since 2 is even) console.log(pipe(none, O.exists(isEven))); // Output: false (since the original Option is None) }
This function is useful when you need a quick check to determine if the value inside an Option satisfies a condition without transforming or filtering the Option itself.
Filtering Options in Effect-TS allows for flexible handling of optional values based on conditions or transformations. Whether you're partitioning values with O.partitionMap, applying transformations with O.filterMap, checking predicates with O.filter, or simply verifying conditions with O.exists, these tools provide robust methods for controlling how Options are handled. By using these functions, you can manage optional data efficiently, ensuring only the relevant values are kept or acted upon.
The above is the detailed content of Filtering Options in Effect-TS: A Practical Guide. For more information, please follow other related articles on the PHP Chinese website!