Pattern.MatchResult
end
(Fn [(Ref Pattern.MatchResult a)] (Ref Int a))
gets the end
property of a MatchResult
.
set-end
(Fn [Pattern.MatchResult, Int] Pattern.MatchResult)
sets the end
property of a MatchResult
.
set-end!
(Fn [(Ref Pattern.MatchResult a), Int] ())
sets the end
property of a MatchResult
in place.
set-start
(Fn [Pattern.MatchResult, Int] Pattern.MatchResult)
sets the start
property of a MatchResult
.
set-start!
(Fn [(Ref Pattern.MatchResult a), Int] ())
sets the start
property of a MatchResult
in place.
start
(Fn [(Ref Pattern.MatchResult a)] (Ref Int a))
gets the start
property of a MatchResult
.
update-end
(Fn [Pattern.MatchResult, (Ref (Fn [Int] Int a) b)] Pattern.MatchResult)
updates the end
property of a Pattern.MatchResult
using a function f
.
update-start
(Fn [Pattern.MatchResult, (Ref (Fn [Int] Int a) b)] Pattern.MatchResult)
updates the start
property of a Pattern.MatchResult
using a function f
.