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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
use crate*;
use Arc;
/// A parser combinator that applies a transformation function to the result of a parser.
///
/// This is useful for mapping parsed values into a new representation,
/// such as converting a parsed string into an integer, or wrapping a result in a custom enum.
///
/// # Type Parameters
/// - `P`: The inner parser
/// - `O1`: The output type of the inner parser `P`
/// - `O2`: The output type after applying the transformation function
/// Constructs a `PBind` parser that applies a function `f` to the result of parser `p`.
///
/// This is similar to the `map` or `bind` operation in functional programming.
///
/// # Parameters
/// - `p`: The parser to apply
/// - `f`: The transformation function that converts the parser’s result
///
/// # Returns
/// A new parser that parses with `p` and transforms its result using `f`.
///
/// # Example
/// ```rust
/// use cypress::prelude::*;
///
/// let input = b"A".into_input();
/// let parser = just('A').map(|_| 1);
///
/// match parser.parse(input) {
/// Ok(PSuccess { val, rest: _ }) => assert_eq!(val, 1),
/// Err(_) => assert!(false),
/// }
/// ```