python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Escape reserved keywords for fields in Motoko
How is a field name that is a reserved keyword able to be 'escaped' to be used in a type?
type User = {
type: Text; // `type` cant be used since its reserved
};
I want to be able to return data w...
Gekctek
Votes: 0
Answers: 1
Motoko Upgrade Actor Class Canister
I am utilizing actor classes within my motoko app that are created dynamically. How do I upgrade those canisters using dfx.
When using dfx deploy it only upgrades the static actor canisters, not any o...
Gekctek
Votes: 0
Answers: 1
Motoko Immutable Array Type Definition
TL;DR - What methods/properties/functionalities are available for immutable arrays [T] (or any built in type)?
Long Version
I have been looking for basic functionality around built in types such as a...
Gekctek
Votes: 0
Answers: 1
Shared function has non-shared return type
Getting error Shared function has non-shared return type for returning Item for the get method.
How would one make Item shared or is there a better way going about returning properties/object
public t...
Gekctek
Votes: 0
Answers: 1