Giter Site home page Giter Site logo

Comments (2)

rtmigo avatar rtmigo commented on July 23, 2024

Although the positive int values in Dart VM do not exceed 2^63-1, these variables are still true 64-bit integers.

If it were a C language, we would clarify that we are talking about 64-bit signed, not 64-bit unsigned. But these are not two fundamentally different things. In many cases, they are interchangeable and almost identical.

In a particular case, to pass a large unsigned number f78207dec08eba34 as a seed, you just need to use its signed counterpart -87df8213f7145cc. This number will fit into a regular int in Dart.

import 'package:fixnum/fixnum.dart';

void main() {
  // interpreting a large number constant as a regular int (aka 64-bit signed)
  int seed = Int64.parseHex('f78207dec08eba34').toInt();
  ...
}

from xrandom_dart.

vemla-solutions avatar vemla-solutions commented on July 23, 2024

Thanks, I've seen this fixnum library, but didn't realize that it actually can be used to convert to a standard "int" type instead of using their Int64.
It works fine, the issue can be closed.
Thank you for your help!

from xrandom_dart.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.