This section of writing will take care of a brief walk through on and answer to question " How u-boot takes up from it's bootm/bootz execution to Linux Kernel handover.
Custom Types As Raw Value for Enum in Swift
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.
You must be logged in to post a comment.