Operatorvapor 4.114.1Vapor
+(_:_:)
Unions two character sets.
func + (lhs: CharacterSet, rhs: CharacterSet) -> CharacterSet
.characterSet(.alphanumerics + .whitespaces)
Unions two character sets.
func + (lhs: CharacterSet, rhs: CharacterSet) -> CharacterSet
.characterSet(.alphanumerics + .whitespaces)
import Vapor
Vapor is a framework for building server applications, APIs and websites in Swift. It provides a safe, performant and scalable foundation for building large complex backends.
struct CharacterSet
A CharacterSet
represents a set of Unicode-compliant characters. Foundation types use CharacterSet
to group characters together for searching operations, so that they can find any of a particular set of characters during a search.