rspec/rules/S3630/swift/rule.adoc

23 lines
534 B
Plaintext
Raw Normal View History

2021-01-27 13:42:22 +01:00
Because force casting (``++as!++``) does not perform any type safety validations, it is capable of performing dangerous conversions between unrelated types. When the types are truly unrelated, the cast will cause a system crash.
2020-06-30 12:48:39 +02:00
== Noncompliant Code Example
----
foo as! MyClass // Noncompliant
----
== Compliant Solution
----
foo as? MyClass
----
include::../see.adoc[]
ifdef::env-github,rspecator-view[]
== Comments And Links
(visible only on this page)
include::comments-and-links.adoc[]
endif::env-github,rspecator-view[]