Code Monkey home page Code Monkey logo

Comments (5)

vlmutolo avatar vlmutolo commented on June 2, 2024

The additional semantic requirements for Eq are laid out in the trait's docs. I think this is okay to implement at least for any of our types that are just "bags of bytes". The three relevant properties are:

  • reflexivity: a == a
  • symmetry: a == b implies b == a
  • transitivity: a == b and b == c implies a == c

The type system will enforce that the bag-of-bytes types can only be compared with the same type, which guarantees that the underlying bytes semantically mean the same thing and that we're not, for example, comparing a private key and a hash. That's the only thing I can think of that might break one of the above properties, and it's not an issue.

from orion.

brycx avatar brycx commented on June 2, 2024

Just for reference, clippy suggests the additional Eq on the following types:

  • X25519 PublicKey + PrivateKey + SessionKeys (high-level API)
  • BLAKE2b Hasher enum

Good points @vlmutolo. Seems like this shouldn't be too much of an issue then.

from orion.

vlmutolo avatar vlmutolo commented on June 2, 2024

In the const generics refactor, the byte containers will all look like Public<C, D>. I think we can derive Eq on PublicData and the various D storage types (e.g. ArrayData). This means that Public will implement Eq if and only if the context parameter C implements Eq. So we can control which types implement Eq just using the context parameter, which is in line with the spirit of the refactor: pushing logic (such as min, max sizes) into the context parameters and letting everything else be the same.

I imagine we'll want to implement Eq for all the current byte container types, but it's good that we'll have the option to not implement it selectively.

from orion.

brycx avatar brycx commented on June 2, 2024

Do you think it'd be better to postpone this to post const-generics, that you've been working on @vlmutolo?

from orion.

vlmutolo avatar vlmutolo commented on June 2, 2024

I think we can go ahead and add this in the current implementation. I'll also make sure to add it in the const-generics branch.

from orion.

Related Issues (20)

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.