Code Monkey home page Code Monkey logo

Comments (4)

apparentlymart avatar apparentlymart commented on September 27, 2024 1

Hi @vietanhduong,

All of the algorithms in cty that work with arbitrary values are recursive in some way, whether it be recursive through the cty.Value collection/structural type nesting, or through something else like reflection over Go structs.

It seems like an inherently recursive problem to me, so I have trouble imagining any algorithms that wouldn't have the same effect as recursion, even if they are e.g. a flat loop that manages a stack itself rather than using the Go runtime's own stack. So I'm not sure what to suggest, unless there is some way you can constrain the problem, such as:

  • Working only with the primitive types, which means you'll never need to do any recursion.
  • Setting a reasonable maximum depth after which your algorithm will abort with an error, or perhaps summarize the deep nodes using special placeholder values.
  • Make your function take a static cty.Type that the value is expected to conform to and then do recursion over that type rather than over the value. That way you can be sure that the maximum stack depth will be the maximum depth of that predefined type, not some arbitrary depth decided by whoever constructed the cty.Value. (That is roughly what gocty does, although it uses predefined Go structs via the reflect package as the basis for the recursion, rather than a cty.Type directly.)

from go-cty.

apparentlymart avatar apparentlymart commented on September 27, 2024

Hi @vietanhduong,

The interface{} field inside cty.Value is an implementation detail and intentionally not exposed directly.

from go-cty.

vietanhduong avatar vietanhduong commented on September 27, 2024

Thank you for answer me. What I'm doing is create a function to convert a cty.Value to interface{}. It's work really well, but I'm considering have any way better than my way? Because it's using recursive, and I don't want it.

from go-cty.

vietanhduong avatar vietanhduong commented on September 27, 2024

Thank you, @apparentlymart. Seem like my question is answered. This issue will be closed here.

from go-cty.

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.