jemc changed the topic of #ponylang to: Welcome! Please check out our Code of Conduct => https://github.com/ponylang/ponyc/blob/master/CODE_OF_CONDUCT.md | Public IRC logs are available => http://irclog.whitequark.org/ponylang | Please consider participating in our mailing lists => https://pony.groups.io/g/pony
samuell has quit [Quit: Leaving]
<zetashift> Are primitives like scalas singletons(https://docs.scala-lang.org/tour/singleton-objects.html) ?
codec1 has quit [Read error: Connection reset by peer]
<zetashift> Well I'm going to sleep. I'll check the logs tomorrow. Gnight!
zetashift has quit [Quit: Leaving]
<SeanTAllen> zetashift: no. not really. primitives are stateless. they are more like a namespace or ocaml modules than like scalas singleton objects.
SenasOzys has quit [Ping timeout: 248 seconds]
dipin has quit [Quit: dipin]
dipin has joined #ponylang
dipin has quit [Quit: dipin]
user10032 has quit [Remote host closed the connection]
dipin has joined #ponylang
atk has quit [*.net *.split]
mindB has quit [*.net *.split]
cquinn has quit [*.net *.split]
acarrico has quit [*.net *.split]
surma has quit [*.net *.split]
Xe has quit [*.net *.split]
Licenser has quit [*.net *.split]
tokenrove has quit [*.net *.split]
dlowe has quit [*.net *.split]
ehooper[m] has quit [*.net *.split]
irx[m] has quit [*.net *.split]
johshoff has quit [*.net *.split]
m6w6 has quit [*.net *.split]
Robdor has quit [*.net *.split]
malthe has quit [*.net *.split]
jmiven has quit [*.net *.split]
endformationage has quit [*.net *.split]
aturley has quit [*.net *.split]
ada[m] has quit [Ping timeout: 255 seconds]
Miikka[m] has quit [Ping timeout: 255 seconds]
lalomartins[m] has quit [Ping timeout: 252 seconds]
srenatus has quit [Ping timeout: 252 seconds]
M-hrjet has quit [Ping timeout: 252 seconds]
dtz has quit [Ping timeout: 255 seconds]
johshoff has joined #ponylang
Amun_Ra has joined #ponylang
jmiven has joined #ponylang
malthe has joined #ponylang
m6w6 has joined #ponylang
hakvroot has joined #ponylang
Robdor has joined #ponylang
Xe has joined #ponylang
Xe has quit [Changing host]
Xe has joined #ponylang
doublec has joined #ponylang
bimawa3 has joined #ponylang
cjh` has joined #ponylang
dlowe has joined #ponylang
tokenrove has joined #ponylang
Licenser has joined #ponylang
atk has joined #ponylang
endformationage has joined #ponylang
aturley has joined #ponylang
kai3x5 has joined #ponylang
cquinn has joined #ponylang
acarrico has joined #ponylang
surma has joined #ponylang
dipin has quit [Quit: dipin]
endformationage has quit [Quit: WeeChat 1.9.1]
jemc has quit [Ping timeout: 240 seconds]
jemc has joined #ponylang
inara has quit [Quit: Leaving]
inara has joined #ponylang
jemc has quit [Ping timeout: 246 seconds]
ehooper[m] has joined #ponylang
ShalokShalom has joined #ponylang
ShalokShalom has quit [Remote host closed the connection]
ehooper[m] has quit [Remote host closed the connection]
lalomartins[m] has joined #ponylang
Miikka[m] has joined #ponylang
ada[m] has joined #ponylang
mindB has joined #ponylang
irx[m] has joined #ponylang
M-hrjet has joined #ponylang
srenatus has joined #ponylang
dtz has joined #ponylang
ehooper[m] has joined #ponylang
user10032 has joined #ponylang
samuell has joined #ponylang
SenasOzys has joined #ponylang
codec1 has joined #ponylang
kempe has quit [Ping timeout: 264 seconds]
samuell has quit [Quit: Leaving]
acarrico has quit [Ping timeout: 255 seconds]
acarrico has joined #ponylang
acarrico has quit [Ping timeout: 260 seconds]
user10032 has quit [Remote host closed the connection]
samuell has joined #ponylang
samuell has quit [Ping timeout: 255 seconds]
aturley has quit [Quit: aturley]
samuell has joined #ponylang
endformationage has joined #ponylang
malthe has quit [Ping timeout: 260 seconds]
user10032 has joined #ponylang
malthe has joined #ponylang
samuell has quit [Remote host closed the connection]
aturley has joined #ponylang
aturley has quit [Quit: aturley]
_whitelogger has joined #ponylang
jemc has joined #ponylang
hakvroot has quit [Ping timeout: 260 seconds]
jemc has quit [Ping timeout: 240 seconds]
samuell has joined #ponylang
dipin has joined #ponylang
SenasOzys has quit [Read error: Connection reset by peer]
SenasOzys has joined #ponylang
moony has joined #ponylang
<moony> How would i convert a F32 (or any other number) to a Array[U8] that can be sent across the internet safely? (As in, no special pony stuff left over)
<SeanTAllen> moony: you can use Writer in the buffered package
<moony> k. Thanks.
<moony> How fast is getting the length of an Array[A: A]? Does it have to iterate the entire array to get the length, or is it stored?
<SeanTAllen> I dont understand the question...
<SeanTAllen> moony what do you mean, Array[A:A]
<SeanTAllen> you can also look at the source of Array to find the answer to your question.
<moony> Mk. That works.
<moony> Yea, size is quick. It's stored not counted. (Some languages don't store the length of the array for whatever reason, opting to count it every time)
<SeanTAllen> is that what you were asking?
<SeanTAllen> Array[A:A] <-- im not sure what A:A is supposed to be there
<SeanTAllen> apparently that means the entire array?
<moony> A: A is just the type.
<moony> (It's the type listed in docs)
<SeanTAllen> well, that means its a generic
<SeanTAllen> its not a type
<SeanTAllen> there's no concrete A types
<SeanTAllen> pretty sure you know that, but i just want to be clear about it just in case
<moony> mk
<moony> ik
<SeanTAllen> sorry, i'm not familiar with "mk" and "ik".
<moony> 'mk' is basically just 'ok'. 'ik' is short for 'I Know'
codec1 has quit [Read error: Connection reset by peer]
codec1 has joined #ponylang
acarrico has joined #ponylang
samuell has quit [Quit: Leaving]
<moony> How and why did a piece of code i wrote become the playground's default example? https://playground.ponylang.org/
<moony> oh
<moony> cache