Skip to main content
Journey Uncommon Logo
JourneyUncommon
easySwiftaccess controlSingle-choice MCQ

A struct property is declared with `private(set)`. From outside the struct's file, what is allowed?

struct Counter { private(set) var value = 0 mutating func bump() { value += 1 } }