ISourceText Type
Represents an input to the F# compiler
Instance members
Instance member |
Description
|
Full Usage:
this.ContentEquals
Parameters:
ISourceText
Returns: bool
Modifiers: abstract |
|
Full Usage:
this.CopyTo
Parameters:
int
destination : char[]
destinationIndex : int
count : int
Modifiers: abstract |
Copies a section of the input to the given destination ad the given index
|
Full Usage:
this.GetLastCharacterPosition
Returns: int * int
Modifiers: abstract |
Gets the last character position in the input, returning line and column
|
Full Usage:
this.GetLineCount
Returns: int
Modifiers: abstract |
Gets the count of lines in the input
|
Full Usage:
this.GetLineString
Parameters:
int
Returns: string
Modifiers: abstract |
Gets a line of an input by index
|
|
Gets a section of the input based on a given range.
|
Full Usage:
this.GetSubTextString
Parameters:
int
length : int
Returns: string
Modifiers: abstract |
Gets a section of the input
|
Full Usage:
this[index]
Parameters:
int
Returns: char
Modifiers: abstract |
Gets a character in an input based on an index of characters from the start of the file
|
Full Usage:
this.Length
Returns: int
Modifiers: abstract |
Gets the total length of the input in characters
|
Full Usage:
this.SubTextEquals
Parameters:
string
startIndex : int
Returns: bool
Modifiers: abstract |
Checks if a section of the input is equal to the given string
|