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
Answered
In Fift, what does ## refer to?

addr_std$10 anycast:(## 1) {anycast = 0}

What is ##?


This question was imported from Telegram Chat: https://t.me/tondev_eng/9104

1
1
Posted one year ago
Votes Newest

Answers


## refers to a uint type. If I write ## 16, that refers to a uint of 16 bits, so up to 2^16 - 1. There is also a type #, which is a shorthand for uint32. Let's display a few examples:

  • ## 8 = uint8
  • ## 64 = uint64
  • ## 32 = uint32
  • # = uint32

Now let's look at your case. ## 1 = uint1. As in one bit. In other words, ## 1 is a boolean.

1
1
Posted one year ago
Jeremy
394 × 5 Administrator
851 Views
1 Answer
one year ago
one year ago
Tags