c++ static bool isSpecifierImmutableInFunctionBody(Specifier sp) { switch (sp) { case Specifier::Default: case Specifier::Borrowing: case Specifier::LegacyShared: case Specifier::LegacyOwned: return true; case Specifier::Consuming: case Specifier::InOut: case Specifier::ImplicitlyCopyableConsuming: return false; } llvm_unreachable("unhandled specifier"); }
c++ /// Does a var or subscript produce an l-value? /// /// \param baseType - the type of the base on which this object /// is being accessed; must be null if and only if this is not /// a type member static bool doesStorageProduceLValue( ... if (!baseType) { return true; }
(edited)var
が LValue を提供できるかどうかを調べてそうですね&
も付けられないので、やっぱり (たとえローレベルで間接アクセスできるとしても)Swiftの型システムレベルでLValue に評価されてるのがおかしい気がする