StringComposition

main

`SwiftStringComposition` provides some features that handles `String` as a collection of lines.
YOCKOW/SwiftStringComposition

SwiftStringComposition

SwiftStringComposition provides some features that handles String as a collection of lines.

Requirements

  • Swift 5.1
  • macOS(>=10.15) or Linux

Dependencies

Dependencies

Usage

import StringComposition


let string = """
#include <stdio.h>

int 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)
/*
#include <stdio.h>

int main(int argc, char* argv[]) {
    printf("Hello, world!");
    return 0;
}
*/

License

MIT License.
See "LICENSE.txt" for more information.

Description

  • Swift Tools 5.1.0
View More Packages from this Author

Dependencies

Last updated: Mon Nov 07 2022 19:30:14 GMT-1000 (Hawaii-Aleutian Standard Time)