A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  R  S  T  V  W  Y 

F

FirstLetter - enum entry in org.jetbrains.jewel.foundation.search.MatchingCaseSensitivity

When set, The first letter from a pattern block must match the case.

Examples:

val matcher = SpeedSearchMatcher.patternMatcher("AbCd", caseSensitivity = MatchingCaseSensitivity.FirstLetter)

// Match exact case
matcher.matches("AbCdef") // [0..4]

// Matching upper case with lower case from pattern, if that's not the first letter
matcher.matches("ABCdef") // [0..4]
matcher.matches("AbCDef") // [0..4]
matcher.matches("ABCDef") // [0..4]

// Does not match if any upper case from pattern is not in the text
matcher.matches("abCdef") // null
matcher.matches("Abcdef") // null
matcher.matches("abcdef") // null
FocusableComponentState - class in org.jetbrains.jewel.foundation.state
 
fromMarkdownLanguageName(java.lang.String) - function in org.jetbrains.jewel.foundation.code.MimeType.Known
Maps from a markdown language name back to a mime type.
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  R  S  T  V  W  Y