common Multiplatform Ktor schema declaration • opensavvy.spine.api • Path • plus plus¶ operator fun plus(other: Path.Segment): Path Returns a new Path with other appended as the last segment. Example¶ val p: Path = … val p2 = p + Segment("foo") operator fun plus(other: String): Path Returns a new Path with other appended as the last segment. Example¶ val p: Path = … val p2 = p + "foo"