Thank you man for the explanation!!! it's very clear to me now when to use which one >D keep doing great work man and thank you!!!
@soumyajitpal5049 Жыл бұрын
Thanks Very Underrated channel
@mathisankar6152 жыл бұрын
Thanks
@AppDeveloperPoint2 жыл бұрын
Welcome. Thanks for support! 👏
@matheussmoreira Жыл бұрын
Well done, friend. I loved it!
@AppDeveloperPoint Жыл бұрын
Glad it helped You
@dharmendragour91502 жыл бұрын
this video really help full for us please continue for logical and tricky question
@ashwaniyadav40542 жыл бұрын
Thanks for the video. Very useful and liked, keep it up.
@AppDeveloperPoint2 жыл бұрын
Thanks, will do!
@rushabhsingh51162 жыл бұрын
Really enjoyed this video....Good job.... Thanks
@AppDeveloperPoint2 жыл бұрын
Glad you liked it
@akshaykumar-qj2kx2 жыл бұрын
Nice... Thanks
@ranganathchenna45592 жыл бұрын
good stuff bro... do more videos on interview series ♣︎
@AppDeveloperPoint2 жыл бұрын
There are 46 videos I think in this playlist. Let me know what specific topic you need. I will anyway keep adding. Thanks for watching. Do subscribe for updates
@Rahul-jf5kf2 жыл бұрын
Hi Nilesh, at 18:46 no problem if we use Int and double, can you please explain
@AppDeveloperPoint2 жыл бұрын
So basically if we are confirming to generic with one T type, So you have to pass same data type. You can either pass both int, both string or any same data type
@Rahul-jf5kf2 жыл бұрын
@@AppDeveloperPoint but one int and one double working fine. func printNumbers(a:T,b:T){ print(a) print(b) } printNumbers(a: 2,b: 3.5)
@AppDeveloperPoint2 жыл бұрын
Because int can always be typecasted to Double. Thats why its working. If you will notice your print value, You will find that Int will convert to double