ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
Expression
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি নির্বিচারী অভিব্যক্তি নির্দিষ্ট করে, একটি নির্বিচারী প্রকারের। যে প্রেক্ষাপটে এটি ব্যবহার করা হয় তা প্রতিক্রিয়ার ধরন নির্ধারণ করে।
JSON প্রতিনিধিত্ব |
---|
{
"values": {
string: {
object (ValueNode )
},
...
},
"result": string
} |
ক্ষেত্র |
---|
values | map (key: string, value: object ( ValueNode )) গণনার সমস্ত মধ্যবর্তী মান। নির্দেশিত গ্রাফ এই ফর্মটি অ্যাসাইক্লিক হতে হবে। "key": value জোড়া। উদাহরণ: { "name": "wrench", "mass": "1.3kg", "count": "3" } । |
result | string "মান" এর মধ্যে কোনটি ভ্যালুনোড গণনার চূড়ান্ত ফলাফল। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003eDefines an expression with a flexible type, adaptable to its usage context.\u003c/p\u003e\n"],["\u003cp\u003eUtilizes a JSON structure containing "values" and a "result" to represent the expression.\u003c/p\u003e\n"],["\u003cp\u003e"Values" holds intermediate computational values in a directed acyclic graph format.\u003c/p\u003e\n"],["\u003cp\u003e"Result" indicates the final output value within the "values" object.\u003c/p\u003e\n"]]],["The content describes a structure for representing computations with intermediate values. It uses a `values` map, where keys (strings) correspond to `ValueNode` objects representing intermediate computation steps. The directed graph formed by these values must be acyclic. The `result` field (a string) designates the final `ValueNode` within the `values` map. The JSON representation uses `\"values\"` for intermediate data and `\"result\"` to specify the output.\n"],null,["# Expression\n\nSpecifies an arbitrary expression, of an arbitrary type. The context in which it is used determines the type of the response.\n\n| JSON representation |\n|-----------------------------------------------------------------------------------|\n| ``` { \"values\": { string: { object (`ValueNode`) }, ... }, \"result\": string } ``` |\n\n| Fields ||\n|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `values` | `map (key: string, value: object (``ValueNode``))` All intermediate values in the computation. The directed graph these form must be acyclic. An object containing a list of `\"key\": value` pairs. Example: `{ \"name\": \"wrench\", \"mass\": \"1.3kg\", \"count\": \"3\" }`. |\n| `result` | `string` Which of the ValueNodes in \"values\" is the final result of the computation. |"]]