Can I extend the class with another interface, lik...
# getting-started
s
Can I extend the class with another interface, like those does in swift?
Copy code
swift
extension SomeType: SomeProtocol, AnotherProtocol {
    // implementation of protocol requirements goes here
}