Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Reflection for F# units of measure

Tags:

c#

reflection

f#

Support for reflection has been currently added into F#, but it is not working for measure types. Is it possible to use reflection in F# for measure types? I've read this. It was for 2008, but if you check some code like bellow in ildasm you cannot see anything about Units of Measure.

// Learn more about F# at http://fsharp.net

[<Measure>] type m
[<Measure>] type cm
 
let CalculateVelocity(length:float<m> ,time:float<cm>) =
    length / time

The ildasm output:

.method public static float64  CalculateVelocity(float64 length,
                                                 float64 time) cil managed
{
  // Code size       5 (0x5)
  .maxstack  4
  IL_0000:  nop
  IL_0001:  ldarg.0
  IL_0002:  ldarg.1
  IL_0003:  div
  IL_0004:  ret
} // end of method Program::CalculateVelocity

So there are somethings that cannot be reflected in F#. Is it true or not? see the comment : Units actually don't get seen at all by the CLR ... in the article.

like image 973
Saeed Amiri Avatar asked Oct 23 '10 18:10

Saeed Amiri


People also ask

What is the reflection of F?

−f (x) reflects the function in the x-axis (that is, upside-down). f (−x) reflects the function in the y-axis (that is, swapping the left and right sides).

What is symmetry of F?

Answer. f(x) is even—it is symmetrical with respect to the y-axis—because f(−x) = f(x). Note: A polynomial will be an even function when all the exponents are . A polynomial will be an odd function when all the exponents are .

Is there a formula for reflection?

The rule for a reflection in the origin is (x,y)→(−y,−x) .


1 Answers

As others already pointed out, when you need to get some information about compiled F# types, you can use standard .NET reflection (System.Reflection) and F# reflection which provides information about discriminated unions, records, etc. (Microsoft.FSharp.Reflection).

Unfortunatelly, information about units of measure cannot be accessed using any of these two APIs, because they are checked only during the compilation and do not actually exist at runtime (they cannot be represented in the CLR in any way). This means that you'll never be able to find out whether e.g. a boxed floating point value has some unit of measure...

You can get some information about units of measure using Metadata namespace from F# PowerPack. For example, the following prints that foo is a unit:

namespace App
open System.Reflection
open Microsoft.FSharp.Metadata

[<Measure>] 
type foo

module Main = 
  let asm = FSharpAssembly.FromAssembly(Assembly.GetExecutingAssembly())
  for ent in asm.Entities do
    if ent.IsMeasure then
      printfn "%s is measure" ent.DisplayName

This reads some binary metadata that the compiler stores in compiled files (so that you can see units when you reference other F# libraries), so you should be able to see informaiton about public API of F# libraries.

like image 120
Tomas Petricek Avatar answered Oct 25 '22 23:10

Tomas Petricek