1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

builtin: make string.(left|right) pub (#8245)

This commit is contained in:
zakuro 2021-01-22 16:35:32 +09:00 committed by GitHub
parent d44c632d11
commit 820e684313
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -591,7 +591,7 @@ pub fn (s string) split_into_lines() []string {
// left returns the `n`th leftmost characters of the string.
// Example: assert 'hello'.left(2) == 'he'
fn (s string) left(n int) string {
pub fn (s string) left(n int) string {
if n >= s.len {
return s
}
@ -600,7 +600,7 @@ fn (s string) left(n int) string {
// right returns the `n`th rightmost characters of the string.
// Example: assert 'hello'.right(2) == 'lo'
fn (s string) right(n int) string {
pub fn (s string) right(n int) string {
if n >= s.len {
return ''
}