FSharp.Interop.Compose


Full

Longer parameter versions of System.String methods

Functions and values

Function or valueDescription
endsWith (...)
Signature: value:string -> ignoreCase:bool -> culture:(type) -> {instance}:(type) -> bool

Calls EndsWith(value, ignoreCase, culture)

Go to GitHub source
equals b comparisonType a
Signature: b:string -> comparisonType:(type) -> a:string -> bool

Calls Equals(a, b, comparisonType)

Go to GitHub source
padLeft (...)
Signature: totalWidth:int -> paddingChar:char -> {instance}:(type) -> string

Calls PadLeft(totalWidth, paddingChar)

Go to GitHub source
padRight (...)
Signature: totalWidth:int -> paddingChar:char -> {instance}:(type) -> string

Calls PadRight(totalWidth, paddingChar)

Go to GitHub source
split separator {instance}
Signature: separator:char [] -> {instance}:(type) -> string []

Calls Split(separator)

Go to GitHub source
startsWith (...)
Signature: value:string -> ignoreCase:bool -> culture:(type) -> {instance}:(type) -> bool

Calls StartsWith(value, ignoreCase, culture)

Go to GitHub source
substring startIndex length {instance}
Signature: startIndex:int -> length:int -> {instance}:(type) -> string

Calls Substring(startIndex, length)

Go to GitHub source
toLower culture {instance}
Signature: culture:(type) -> {instance}:(type) -> string

Calls ToLower(culture)

Go to GitHub source
toUpper culture {instance}
Signature: culture:(type) -> {instance}:(type) -> string

Calls ToUpper(culture)

Go to GitHub source
trim trimChars {instance}
Signature: trimChars:char [] -> {instance}:(type) -> string

Calls Trim(trimChars)

Go to GitHub source
Fork me on GitHub