https://github.com/yockow/swiftstringcomposition
`SwiftStringComposition` provides some features that handles `String` as a collection of lines.
https://github.com/yockow/swiftstringcomposition
Last synced: 3 months ago
JSON representation
`SwiftStringComposition` provides some features that handles `String` as a collection of lines.
- Host: GitHub
- URL: https://github.com/yockow/swiftstringcomposition
- Owner: YOCKOW
- License: mit
- Created: 2020-02-14T04:03:40.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-12-09T05:27:02.000Z (7 months ago)
- Last Synced: 2025-02-03T14:18:37.242Z (5 months ago)
- Language: Swift
- Size: 52.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# SwiftStringComposition
`SwiftStringComposition` provides some features that handles `String` as a collection of lines.
# Requirements
- Swift 5, 6
- macOS(>=10.15) or Linux## Dependencies

# Usage
```Swift
import StringCompositionlet string = """
#includeint main(int argc, char* argv[]) {
printf("Hello, world!");
return 0;
}
"""var lines = String.Composition(string)
lines.shiftRight(1, in: 3...4)
lines.indent = .spaces(count: 4)print(lines.description)
/*
#includeint main(int argc, char* argv[]) {
printf("Hello, world!");
return 0;
}
*/```
# License
MIT License.
See "LICENSE.txt" for more information.