Giter Club home page Giter Club logo

Comments (4)

kmcgill88 avatar kmcgill88 commented on May 17, 2024 1

Awesome! Thanks man!

from defaultskit.

nmdias avatar nmdias commented on May 17, 2024

Hi @kmcgill88,

The generic Type of Key ValueType, or T in your example, is already a Codable:

public final class Key<ValueType: Codable> { }

So it's redundant to specify it. Try writing this:

func save<T>(_ object: T, key: Key<T>) { }

And it should automatically infer the save method signature as:

func save<T>(_ object: T, key: Key<T>) where T : Decodable, T : Encodable

from defaultskit.

kmcgill88 avatar kmcgill88 commented on May 17, 2024

Ah, that did the trick! Thank you! I don't quite understand how it is inferred though.

I did see ValueType is scoped to Codable in your code, so in my code, key: Key<T>, is it accurate to say T is inferred to be Codable because thats what your Key type requires?

Further, since I'm reusing T, _ object: T, it also has the inference because T is in the same argument scope? If I changed to _ object: U then I would have to scope U to be Codable.

Am I following correctly?

from defaultskit.

nmdias avatar nmdias commented on May 17, 2024

Yes, all of the above are correct.

from defaultskit.

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.