Instance Method (Default implementation)swift-syntax 600.0.1SwiftSyntax
hash(into:)
SyntaxHashable.swift:19func hash(into hasher: inout Hasher)
func hash(into hasher: inout Hasher)
import SwiftSyntax
A library for working with Swift code.
protocol SyntaxHashable : Hashable
Protocol that provides a common Hashable implementation for all syntax nodes
@frozen struct Hasher
The universal hash function used by Set
and Dictionary
.
func hash(into hasher: inout Hasher)
Hashes the essential components of this value by feeding them into the given hasher.
static func == (lhs: Self, rhs: Self) -> Bool