Skip to content

Navigation Menu

Sign inAppearance settings
Appearance settings

Latest commit

 

History

History
History
57 lines (46 loc) · 2.03 KB

File metadata and controls

57 lines (46 loc) · 2.03 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright 2010-2024 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
@file:Suppress("NON_ABSTRACT_FUNCTION_WITH_NO_BODY", "MUST_BE_INITIALIZED_OR_BE_ABSTRACT", "UNUSED_PARAMETER")
package kotlin
/**
* The `String` class represents character strings. All string literals in Kotlin programs, such as `"abc"`, are
* implemented as instances of this class.
*/
public actual class String : Comparable<String>, CharSequence {
public actual companion object {}
/**
* Returns a string obtained by concatenating this string with the string representation of the given [other] object.
*
* @sample samples.text.Strings.stringPlus
*/
@kotlin.internal.IntrinsicConstEvaluation
public actual operator fun plus(other: Any?): String
@kotlin.internal.IntrinsicConstEvaluation
public actual override val length: Int
/**
* Returns the character of this string at the specified [index].
*
* If the [index] is out of bounds of this string, the behavior is unspecified.
*/
@kotlin.internal.IntrinsicConstEvaluation
public actual override fun get(index: Int): Char
public actual override fun subSequence(startIndex: Int, endIndex: Int): CharSequence
@kotlin.internal.IntrinsicConstEvaluation
public actual override fun compareTo(other: String): Int
/**
* Indicates if [other] object is equal to this [String].
*
* An [other] object is equal to this [String] if and only if it is also a [String],
* it has the same [length] as this String,
* and characters at the same positions in each string are equal to each other.
*
* @sample samples.text.Strings.stringEquals
*/
@kotlin.internal.IntrinsicConstEvaluation
public actual override fun equals(other: Any?): Boolean
public override fun hashCode(): Int
@kotlin.internal.IntrinsicConstEvaluation
public actual override fun toString(): String
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.