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.
12 lines
418 B
12 lines
418 B
// (c) Microsoft Corporation 2005-2009.
|
|
#light
|
|
|
|
module Microsoft.FSharp.Compiler.UnicodeLexing
|
|
|
|
open Microsoft.FSharp.Text
|
|
open Internal.Utilities.Text.Lexing
|
|
|
|
type Lexbuf = LexBuffer<char>
|
|
val internal StringAsLexbuf : string -> Lexbuf
|
|
val public FunctionAsLexbuf : (char [] * int * int -> int) -> Lexbuf
|
|
val public UnicodeFileAsLexbuf :string * int option -> System.IO.FileStream * System.IO.StreamReader * Lexbuf
|
|
|