Skip to content

翻訳 🌍

このページの翻訳を行ったり、改善したりすることができます。

コントリビュートする

ENUM

TargetQuery

Contents

swift
public enum TargetQuery: Codable, Equatable, Sendable

Queries for matching against a target in manifests.

Cases

named(_:)

swift
case named(String)

Match targets with the given name.

tagged(_:)

swift
case tagged(String)

Match targets with the given metadata tag.

Methods

init(from:)

swift
public init(from decoder: Decoder) throws

Parameters

NameDescription
decoderThe decoder to read data from.

encode(to:)

swift
public func encode(to encoder: Encoder) throws

Parameters

NameDescription
encoderThe encoder to write data to.

Released under the MIT License.