Defining Aliases

0
(0)

C

C++

C#

F#

C

// ullong is an alias for the unsigned long long type
typedef unsigned long long ullong;

C++

// ullong is an alias for the unsigned long long type
using ullong = unsigned long long;

C#

// ullong is an alias for the System.UInt128 type
using ullong = System.UInt128;

F#

// long is an alias for the int64 type
type long = int64

let number: long = 123L
printfn "%d" number


Next

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

As you found this post useful...

Follow us on social media!

We are sorry that this post was not useful for you!

Let us improve this post!

Tell us how we can improve this post?


Explore More IT Terms


Share this term: Facebook X LinkedIn WhatsApp Email
CONTINUE LEARNING Next: Transfers →

Leave a Reply

Your email address will not be published. Required fields are marked *

For me, coding and music production are two sides of the same coin : it’s all about creating something impactful from scratch.