python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Property of a protocol doesn't accept a protocol inheritance
I have two basic Protocols
protocol SubtractsDelegate: class {
func func1()
}
protocol AddsDelegate: class {
func func2()
}
My third Protocol conforms to both
protocol Operates: SubtractsDel...

siefix
Votes: 0
Answers: 1
Implementing MVP using protocols
I'm trying to implement MVP using protocols,
I have View controller that holds a reference to a presenter protocol.
The presenter protocol contains a reference to the view
and has associatedtype that ...
Marry G
Votes: 0
Answers: 1
ModuleNotFoundError: No module named 'pycryptodome'
import pycryptodome
and get this error
ModuleNotFoundError: No module named 'pycryptodome'
I've been getting this error every time I try import "pycryptodome" however it is definitely ins...
Sam
Votes: 0
Answers: 0
Using CodingKeys with custom protocol
I have the following Codable protocol containing a variable which I would like to exclude from the codable ones.
Problem is that I can't use the CodingKeys enum made for that within my own protocol: T...

Tulleb
Votes: 0
Answers: 2