You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a regular definition, the conversion will require explicit use of cast or as to take effect.
func __as__(from FromType) ToType {
}
result ToType = from as ToType
When the implicit keyword is thrown out in front, then the conversion will not require cast or as to take effect. It will perform conversions between types even when the cast is never explicitly invoked.