mirror of
https://github.com/swift-server/RediStack.git
synced 2026-05-03 07:32:28 +00:00
30 lines
910 B
Swift
30 lines
910 B
Swift
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This source file is part of the RediStack open source project
|
|
//
|
|
// Copyright (c) 2019 RediStack project authors
|
|
// Licensed under Apache License v2.0
|
|
//
|
|
// See LICENSE.txt for license information
|
|
// See CONTRIBUTORS.txt for the list of RediStack project authors
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import NIO
|
|
|
|
private let allocator = ByteBufferAllocator()
|
|
|
|
extension String {
|
|
/// The UTF-8 byte representation of the string.
|
|
public var bytes: [UInt8] { return .init(self.utf8) }
|
|
|
|
/// Creates a `NIO.ByteBuffer` with the string's value written into it.
|
|
public var byteBuffer: ByteBuffer {
|
|
var buffer = allocator.buffer(capacity: self.count)
|
|
buffer.writeString(self)
|
|
return buffer
|
|
}
|
|
}
|