Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text

Questions with tag func

Questions with tag func

Tags
Sorting
Results
per page
Filter

   
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
If there are two numbers, like 1100 and 0011, what is the easiest way to "concatenate" them (not adding, but merging into a single number containing all the ...
8 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
When you implement flow control in your program and you have a loop, sometimes you need to let the execution path out of that loop while its condition is not...
8 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
Some programming languages let assign a variable the result of a logical expression. In FunC that could look like this: int enough? = (s.slice_bits() >= flag...
8 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
Suppose I have a slice that contains a string and I want to read it char by char. How do I do it? --- > This question was imported from Telegram Chat: https:...
8 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
In TON software development, everything is a cell. Every cell can reference up to 4 other cells, creating a parent-child relationship. What if I have a speci...
8 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
Programming languages often use 0 for "false" and -1 for "true". It works that way in FunC, too. But what about all the other numbers? Do they have a boolean...
8 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
FunC standard library includes Lisp-style lists. TON documentation describes them and their basic functionality like adding an element to the beginning of a ...
8 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Hi guys, how can I sign a Cell with ton-crypto, or ton-core or in someway, that later can be correctly verified by check_signature or check_data_signature fr...
9 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
According to the documentation, we find the commit() FunC code described as follows: Commits the current state of registers c4 (“persistent data”) and c5 (“a...
9 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
here is my FunC code: C-like forall X -> int is_null (X x) asm "ISNULL"; forall X -> (tuple, ()) push_back (tuple tail, X head) asm "CONS"; forall X -> (tupl...
9 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Hi there guys, how can I make an in place replacement of the bytes in a cell? For example, if I have a cell like, begin_cell().store_uint(val, 8).end_cell(),...
9 months ago
1 Votes
1 Answers
12K Views
1 Votes 1 Answers 12K Views
In Blueprint, we will need to write the Wrapper functions ourselves. More importantly, when we code the op code in our FunC code, we need to decode the strin...
9 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Is there a conventional way to concatenate two strings using FunC? --- > This question was imported from Telegram Chat: https://t.me/tondev/130472
9 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
I remember there was a function equal_slices in stdlib for comparing two slices, but now at compilation time I get an error saying such a function does not e...
9 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
In modular arithmetic there is such a thing as modular multiplication. Does it have a built-in support in FunC? --- > This question was imported from Telegra...
9 months ago
0 Votes
2 Answers
13K Views
0 Votes 2 Answers 13K Views
I found a strange behavior in func bitwise operation. I don't understand why. slice slice0 = begin_cell().store_coins(123).end_cell().begin_parse(); int resu...
10 months ago
0 Votes
2 Answers
14K Views
0 Votes 2 Answers 14K Views
If there are two dicts and one of them is bigger than other, would the operations like insert require more gas for the bigger one, or would the gas fees be t...
10 months ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
In FunC, if you apply the letter c to a string literal (writing it as "string"c), the crc32 check value of the string is calculated and used instead of the s...
10 months ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
I use Visual Studio Code with the "FunC Language Support" extension by Whales Corp. This setup is convenient and often helps with the autocompletion in FunC....
10 months ago
0 Votes
1 Answers
1K Views
0 Votes 1 Answers 1K Views
In FunC there is a function run_ticktock called in ticktock transactions of special smart contracts. But can such smart contracts work on a basechain, or is ...
11 months ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
There are different approaches to division: * using floating-point numbers (so 23 / 4 = 5.75) * mathematical rounding (23 / 4 = 6 since it's the closest inte...
12 months ago
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
In the following API link, the server gets the list of items of a collection. https://tonapi.io/v2/nfts/collections/0%3A80d78a35f955a14b679faa887ff4cd5bfc0f4...
one year ago
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
How do you define multiple cells in the storage of a contract? clike const data = beginCell() .storeUint(someVar, 64) .storeMaybeSlice() .endCell(); In other...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
how can I calculate the gas price for get/set operations to Hashmap? https://docs.ton.org/learn/tvm-instructions/instructions for these operations the gas pr...
one year ago
0 Votes
0 Answers
3K Views
0 Votes 0 Answers 3K Views
Case 1: () recv_internal(int my_balance, int msg_value, cell in_msg_full, slice in_msg_body) impure { slice cs = in_msg_full.begin_parse(); int flags = cs~lo...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
In the Ston.fi core contract GitHub repository (https://github.com/ston-fi/dex-core), there is a line of FunC code as shown below: force_chain(WORKCHAIN, sen...
Howard Peng
10 × 1 Administrator
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Both FunC and Tact languages can be used for developing on TON. But from what I see, tutorials, questions and other resources are currently focused mostly on...
one year ago
2 Votes
1 Answers
4K Views
2 Votes 1 Answers 4K Views
Hello, I'm considering to move my projects from another blockchain to TON but I still don't understand how to handle the asynchronous part. One of my project...
one year ago
0 Votes
0 Answers
4K Views
0 Votes 0 Answers 4K Views
Suppose we check for two conditions at the same time: if( (a == b) & (b == c) ). If a is not equal to b, that makes the first condition false. And that means...
one year ago
Show more results questions