csharpfftfsharpintegrationinterpolationlinear-algebramathdifferentiationmatrixnumericsrandomregressionstatisticsmathnet
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
542 B
14 lines
542 B
// (c) Microsoft Corporation. All rights reserved
|
|
|
|
/// Parse "printf-style" format specifiers at compile time, producing
|
|
/// a list of items that specify the types of the things that follow.
|
|
///
|
|
/// Must be updated if the Printf runtime component is updated.
|
|
|
|
module internal Microsoft.FSharp.Compiler.Formats
|
|
|
|
open Internal.Utilities
|
|
open Microsoft.FSharp.Compiler
|
|
open Microsoft.FSharp.Compiler.AbstractIL.Internal
|
|
|
|
val ParseFormatString : Range.range -> Env.TcGlobals -> string -> Tast.typ -> Tast.typ -> Tast.typ -> Tast.typ * Tast.typ
|
|
|