In this post we will be seeing Custom Types As Raw Value for Enum in Swift. So for your custom type (Class/Struct) to be used as raw value of enums you will need to conform to Equatable and one of the above mentioned protocols.
Variables in TypeScript
In this post we're going to see What are Variable, how do we use them, ways to declare variable and so on! Variable is a name given to stored memory location
DSP Icebreaker – Drawing a Sine Wave in python of 100 Hz
In this article I'll show you the practical aspect of DSP, by simply drawing a sinusoidal signal in Digital domain, I will show you how all that theoretical knowledge we learn in classroom is used in implementing in something simple as a sine signal
Friend Function in C++
In this post we will be seeing Friend Functions in C++, We will also see rules to define Friend Function.
Data Types in TypeScript
In this post we will be seeing Data Types in TypeScript. In TypeScript Majorly Data Types are Built in Data Types, User-Defined Data Types and Any data type.
Implicitly Unwrapped Optionals in Swift
You use implicitly unwrapped optional only in places where the value of the variable is present before it is first accessed. If you try to access the the value of implicitly unwrapped optional, and the value is nil, you will a runtime exception.
Swift Delegates and Protocols
In this post we will see Delegates and Protocols in Swift. Lets break both the word Delegates and Protocols and try understand what they actually mean. Delegates as the name suggests, delegation i.e. your representative or someone on your behalf. Protocols on the other hand means a set of rules and regulation.
‘this’ Keyword in Java
In this post we're going to see one of the most important and most useful topic i.e 'this' keyword in java. This is the topic of concern because as soon as one starts with OOP concept, 'this' keyword is encountered more often and people just ignore it considering it as a part of syntax. But as a matter of fact it has variety of applications from coding point of view which simplifies the code and makes it more understandable than before.
You must be logged in to post a comment.