v/vlib/builtin/option.v

56 lines
928 B
V
Raw Normal View History

2020-02-03 05:00:36 +01:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-06-23 04:21:30 +02:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 20:20:28 +02:00
module builtin
2019-12-16 20:22:04 +01:00
/*
struct Option2<T> {
data T
error string
ecode int
ok bool
is_none bool
}
*/
2019-12-19 21:52:45 +01:00
2019-06-22 20:20:28 +02:00
struct Option {
2019-12-19 21:52:45 +01:00
data [300]byte
error string
ecode int
ok bool
is_none bool
2019-06-22 20:20:28 +02:00
}
// `fn foo() ?Foo { return foo }` => `fn foo() ?Foo { return opt_ok(foo); }`
fn opt_ok(data voidptr, size int) Option {
2019-10-27 01:36:43 +02:00
if size >= 300 {
panic('option size too big: $size (max is 300), this is a temporary limit')
}
2019-12-19 21:52:45 +01:00
res := Option{
ok: true
}
C.memcpy(res.data, data, size)
return res
}
2019-10-23 16:02:39 +02:00
// used internally when returning `none`
fn opt_none() Option {
2019-12-19 21:52:45 +01:00
return Option{
is_none: true
}
}
pub fn error(s string) Option {
2019-12-19 21:52:45 +01:00
return Option{
error: s
}
}
pub fn error_with_code(s string, code int) Option {
2019-12-19 21:52:45 +01:00
return Option{
error: s
ecode: code
}
}