1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/builtin/option.v

56 lines
928 B
V
Raw Normal View History

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