Calling this property directly is discouraged. Instead, convert an
instance of any type to a string by using the String(describing:)
initializer. This initializer works with any type, and uses the custom
description property for types that conform to
CustomStringConvertible:
structPoint:CustomStringConvertible{letx:Int,y:Intvardescription:String{return"(\(x), \(y))"}}letp=Point(x:21,y:30)lets=String(describing:p)print(s)// Prints "(21, 30)"
The conversion of p to a string in the assignment to s uses the
Point type’s description property.
Hashes the essential components of this value by feeding them into the
given hasher.
Implement this method to conform to the Hashable protocol. The
components used for hashing must be the same as the components compared
in your type’s == operator implementation. Call hasher.combine(_:)
with each of these components.
Important
In your implementation of hash(into:),
don’t call finalize() on the hasher instance provided,
or replace it with a different instance.
Doing so may become a compile-time error in the future.
Hash values are not guaranteed to be equal across different executions of
your program. Do not save hash values to use during a future execution.
Important
hashValue is deprecated as a Hashable requirement. To
conform to Hashable, implement the hash(into:) requirement instead.
The compiler provides an implementation for hashValue for you.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-05-28 UTC."],[[["\u003cp\u003e\u003ccode\u003ePeriod\u003c/code\u003e represents the operational hours of a place, containing open and optional close events.\u003c/p\u003e\n"],["\u003cp\u003eIf a place is open 24 hours, the \u003ccode\u003eclose\u003c/code\u003e event will be nil, and the \u003ccode\u003eopen\u003c/code\u003e event will have a time of "0000".\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ePeriod\u003c/code\u003e conforms to \u003ccode\u003eCustomStringConvertible\u003c/code\u003e, \u003ccode\u003eEquatable\u003c/code\u003e, and \u003ccode\u003eHashable\u003c/code\u003e protocols for description, comparison, and hashing functionalities.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003edescription\u003c/code\u003e property provides a textual representation of the \u003ccode\u003ePeriod\u003c/code\u003e instance.\u003c/p\u003e\n"],["\u003cp\u003e\u003ccode\u003ehash(into:)\u003c/code\u003e and the deprecated \u003ccode\u003ehashValue\u003c/code\u003e are used for hashing in accordance with the \u003ccode\u003eHashable\u003c/code\u003e protocol.\u003c/p\u003e\n"]]],[],null,["Period \n\n struct Period\n\n extension Period : Copyable, CustomStringConvertible, Equatable, Escapable, Hashable, Sendable\n\nA type representing a period of time where the place is operating for a [Place](../Structs/Place.html).\n\nContains an open [Event](../Structs/Event.html) and an optional close [Event](../Structs/Event.html). The close event will be nil if the\nperiod is open 24hrs.\n- `\n ``\n ``\n `\n\n [==(_:_:)](#/s:17GooglePlacesSwift6PeriodV2eeoiySbAC_ACtFZ)`\n ` \n Returns a Boolean value indicating whether two values are equal.\n\n Equality is the inverse of inequality. For any values `a` and `b`,\n `a == b` implies that `a != b` is `false`. \n\n Declaration \n Swift \n\n static func == (lhs: Period, rhs: Period) -\u003e Bool\n\n Parameters\n\n |-------------|---------------------------|\n | ` `*lhs*` ` | A value to compare. |\n | ` `*rhs*` ` | Another value to compare. |\n\n- `\n ``\n ``\n `\n\n [close](#/s:17GooglePlacesSwift6PeriodV5closeAA5EventVSgvp)`\n ` \n The close event of this period. Can be nil if period is open 24hrs. \n\n Declaration \n Swift \n\n let close: ../Structs/Event.html?\n\n- `\n ``\n ``\n `\n\n [description](#/s:17GooglePlacesSwift6PeriodV11descriptionSSvp)`\n ` \n A textual representation of this instance.\n\n Calling this property directly is discouraged. Instead, convert an\n instance of any type to a string by using the `String(describing:)`\n initializer. This initializer works with any type, and uses the custom\n `description` property for types that conform to\n `CustomStringConvertible`: \n\n struct Point: CustomStringConvertible {\n let x: Int, y: Int\n\n var description: String {\n return \"(\\(x), \\(y))\"\n }\n }\n\n let p = Point(x: 21, y: 30)\n let s = String(describing: p)\n print(s)\n // Prints \"(21, 30)\"\n\n The conversion of `p` to a string in the assignment to `s` uses the\n `Point` type's `description` property. \n\n Declaration \n Swift \n\n var description: String { get }\n\n- `\n ``\n ``\n `\n\n [hash(into:)](#/s:17GooglePlacesSwift6PeriodV4hash4intoys6HasherVz_tF)`\n ` \n Hashes the essential components of this value by feeding them into the\n given hasher.\n\n Implement this method to conform to the `Hashable` protocol. The\n components used for hashing must be the same as the components compared\n in your type's `==` operator implementation. Call `hasher.combine(_:)`\n with each of these components. \n Important\n\n In your implementation of `hash(into:)`,\n don't call `finalize()` on the `hasher` instance provided,\n or replace it with a different instance.\n Doing so may become a compile-time error in the future. \n\n Declaration \n Swift \n\n func hash(into hasher: inout Hasher)\n\n- `\n ``\n ``\n `\n\n [hashValue](#/s:17GooglePlacesSwift6PeriodV9hashValueSivp)`\n ` \n The hash value.\n\n Hash values are not guaranteed to be equal across different executions of\n your program. Do not save hash values to use during a future execution. \n Important\n `hashValue` is deprecated as a `Hashable` requirement. To conform to `Hashable`, implement the [hash(into:)](../Structs/Period.html#/s:17GooglePlacesSwift6PeriodV4hash4intoys6HasherVz_tF) requirement instead. The compiler provides an implementation for `hashValue` for you. \n\n Declaration \n Swift \n\n var hashValue: Int { get }\n\n- `\n ``\n ``\n `\n\n [open](#/s:17GooglePlacesSwift6PeriodV4openAA5EventVvp)`\n ` \n The open event of this period.\n\n Each `Period` is guaranteed to have an open event.\n If the period is representing open 24hrs, it will only have the open Event with time as \"0000\". \n\n Declaration \n Swift \n\n let open: ../Structs/Event.html"]]