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
0 Answers
12K Views
0 Votes 0 Answers 12K 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...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
I've previously seen tilde symbol used for bitwise NOT in other programming languages, so placing ~ before some X means "not X". But it seems in FunC it work...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Is there any specific reason why single line comments in FunC start with ;; and not something more common like //? It feels very odd. --- > This question was...
one year ago
5 Votes
2 Answers
22K Views
5 Votes 2 Answers 22K Views
There's a lot of setup for a project to implement a smart contract in FunC for TON blockchain (ton.org). Is there a good practice setup project that provides...
Tal Kol
359 × 3 Administrator
2 years ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
What would be your suggestions on some basic pet projects for studying main concepts of ton? These would be smart contracts to write immidiately after doing ...
one year ago
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
Suppose there is a web3 blog platform where people follow specific writers. Each follower has its own smart contract. Usually data such as "X follows Y" woul...
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
It is probably a silly question, but it is confusing for a newcomer. What is the difference between msg and msg_body, aside from the type difference? --- > T...
one year ago
0 Votes
2 Answers
12K Views
0 Votes 2 Answers 12K Views
As far as I understand, code in FunC language compiles to Fift, and then from Fift code the resulting bag of cells is generated. Could I make my code more co...
one year ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
Hi, I transferred my TG NFT username to another wallet, but the transfer has not happened yet. The transaction generated exit code 206. Is this normal? Can s...
0 Votes
2 Answers
15K Views
0 Votes 2 Answers 15K 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...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Does anyone know or have an example how can I store a static address in FunC? I'm thinking about using the asm command, but I'm not sure what the syntax is f...
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...
one year ago
0 Votes
2 Answers
11K Views
0 Votes 2 Answers 11K Views
How do we save an ordinary string in FunC? For example, how do you store the text "A" without making it a slice? --- > This question was imported from Telegr...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
What determines the purity of a function? A) It must only read the function parameters. B) It can read values outside of the function parameters and return a...
one year ago
1 Votes
1 Answers
18K Views
1 Votes 1 Answers 18K Views
Many programming languages have a ternary operator, such as booleanExpression ? expression1 : expression2 in Java (if booleanExpression equals true, than exp...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
How is a reference serialized (stored)? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9475
1 Votes
1 Answers
18K Views
1 Votes 1 Answers 18K Views
Is there any call to get the contract address inside it? I cant find anything like that in tvm https://t.me/tondev_eng/363
one year ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
Where can I find wallet v3r1 and v3r2 FunC code? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9027
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Is there any more materials on writing those tests? Since I am just joined the TON ecosytem. As far as I understood, in order to test internal command, tests...
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
What's the best way to debug unexpected test failures? Does FunC have a print function? My test failed on first check: throw_if(100, exit_code != 0); but how...
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
Is there a built-in square root function in the language? And if not, maybe there is a popular library with the optimal implementation? --- > This question w...
one year ago
0 Votes
2 Answers
18K Views
0 Votes 2 Answers 18K Views
Do I get it right that if my smart contract needs to store a string longer than 1023 bits, I should split that thing in parts and make a chain of cells conta...
one year ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
TON documentation states that "every function in TVM program has an internal integer id by which it can be called". But how exactly can I call a function aft...
one year ago
2 Votes
1 Answers
23K Views
2 Votes 1 Answers 23K Views
There's an existing contract that was deployed by somebody else, for example a token, that has getter methods like get_balance(address) or get_total_supply()...
Tal Kol
359 × 3 Administrator
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
What's the difference between addr, and Addr, by the way? https://t.me/tondev_eng/9063
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K 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:...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Do I get it right that there is no implementation of a floating-point numbers type such as float in FunC? --- > This question was imported from Telegram Chat...
one year ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
I've been trying to create a simple wallet smart contract by myself to learn FunC, but my transactions keep failing with exit code 34. What am I doing wrong?...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
In general-purpose languages like Java it is possible to get server time by using things like System.currentTimeMills(). Is there a way to retrieve server ti...
one year ago
Show more results questions