Tagged Questions
The active-pattern tag has no wiki summary.
6
votes
2answers
444 views
Active patterns and member constraint
For an inline function one could create a constraint like:
let inline implicit arg =
( ^a : (static member op_Implicit : ^b -> ^a) arg)
requiring the given operator or member on the arguments. ...
3
votes
2answers
300 views
F# Active Pattern List.filter or equivalent
I have a records of types
type tradeLeg = {
id : int ;
tradeId : int ;
legActivity : LegActivityType ;
actedOn : DateTime ;
estimates : legComponents ;
entryType : ...
3
votes
3answers
219 views
F# active pattern as non-static member
I'm not sure if non-static public member active patterns are allowed but you can define them without the compiler complaining. If they are allowed what's the syntax for matching against one? The ...
1
vote
2answers
96 views
Why do active patterns require special syntax?
If ordinary functions could be used as patterns it would save having to write trivial active patterns like
let (|NotEmpty|_|) s = Seq.tryPick Some s
and would, hypothetically, allow
let s = seq []
...
1
vote
2answers
110 views
Use of typeof<_> in active pattern
Given the following contrived active pattern:
let (|TypeDef|_|) (typeDef:Type) (value:obj) =
if obj.ReferenceEquals(value, null) then None
else
let typ = value.GetType()
if ...
1
vote
1answer
150 views
How can I pass complex expression to parametrized active pattern?
I defined the active pattern "Expression" as follows:
let (|Expression|_|) expression _ = Some(expression)
Now I'm trying to use it in this way:
match () with
| Expression((totalWidth - wLeft - ...
1
vote
1answer
452 views
overloading F# active patterns
I am fairly new to F# and active patterns, and I ran across an anomoly that I can't explain.
module Eval =
let (|Bet|Pass|) (test:BetChoice) =
match test with
| BetChoice.Bet -> Bet
...
0
votes
1answer
275 views
F# match active pattern as expanded tuple
I get the following error in diff with a red squiggle under Subset.
Type mismatch. Expecting a Range -> Choice but given a Range * Range -> Choice
Is there some sort of type annotation I can ...