In F#, how can I create a custom attribute to apply on expressions? I looked for resources everywhere, but I didn't find nothing.
For exemple
The attribute [<Entrypoint>]
can be applied to some expression, and by consequence the compiler can infer that expression should be of type array string -> int
.
How can I create a custom attribute to work simillary ?
To create a custom attribute, simply declare a class that inherits from System.Attribute
:
type MyAttribute() = inherit System.Attribute()
[<My>]
let f x = x+1
As you can see, the suffix "Attribute" can be omitted when applying the attribute to code units. Optionally, you can give your attribute parameters or properties:
type MyAttribute( x: string ) =
inherit System.Attribute()
member val Y: int = 0 with get, set
[<My("abc", Y=42)>]
let f x = x+1
At runtime, you can inspect types, methods, and other code units to see which attributes are applied to them, and to retrieve their data:
[<My("abc", Y=42)>]
type SomeType = A of string
for a in typeof<SomeType>.GetCustomAttributes( typeof<MyAttribute>, true ) do
let my = a :?> MyAttribute
printfn "My.Y=%d" my.Y
// Output:
> My.Y=42
Here is a tutorial explaining custom attributes in more detail.
However, you cannot use custom attributes to enforce compile-time behavior. The EntryPointAttribute
is special - that is, the F# compiler knows about its existence and gives it special treatment. There are some other special attributes in F# - for example, NoComparisonAttribute
, CompilationRepresentationAttribute
, etc., - but you cannot tell the compiler to give special treatment to attributes that you yourself created.
If you describe your larger goal (i.e. what you're trying to achieve), I'm sure we'll be able to find a better solution.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With