blob: ae4a4ee3f14b7a41ca2901f5b59903d0c7191e13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* esodata - data structures of varying utility
* Copyright 2022, Ben Culkin
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package bjc.optics;
import java.util.Optional;
import bjc.data.Either;
/**
* Various utilities for working with prisms
*
* @author bjcul
*
*/
public class Prisms {
/**
* Create a prism that reflects on the value in an optional
*
* @param <L> The type contained in the optional
* @param <R> An auxiliary type
*
* TODO: better notes for what R is for
*
* @return A prism that reflects on an optional
*/
public static <L, R> PrismX<L, R, Optional<L>, Optional<R>> optional() {
return PrismX.of((opt) -> opt.isPresent() ? Either.right(opt.get()) : Either.left(Optional.empty()),
Optional::ofNullable);
}
/**
* Create a prism that reflects on whether a double corresponds to a given
* integer.
*
* @return A prism on the int view of a double.
*/
public static Prism<Integer, Double> whole() {
return Prism.of((vl) -> Math.rint(vl) == vl ? Either.right(vl.intValue()) : Either.left(vl),
Integer::doubleValue);
}
}
|