1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 03:05:05 +08:00
gf/util/gconv/internal/converter/converter_rune.go

32 lines
712 B
Go

// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
//
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://github.com/gogf/gf.
package converter
// Rune converts `any` to rune.
func (c *Converter) Rune(any any) (rune, error) {
if v, ok := any.(rune); ok {
return v, nil
}
v, err := c.Int32(any)
if err != nil {
return 0, err
}
return v, nil
}
// Runes converts `any` to []rune.
func (c *Converter) Runes(any any) ([]rune, error) {
if v, ok := any.([]rune); ok {
return v, nil
}
s, err := c.String(any)
if err != nil {
return nil, err
}
return []rune(s), nil
}