diff options
author | Determinant <[email protected]> | 2015-06-03 23:00:30 +0800 |
---|---|---|
committer | Determinant <[email protected]> | 2015-06-03 23:00:30 +0800 |
commit | a753eca0121ac3ec81ed76bd719d3f1cb9522680 (patch) | |
tree | 9777fdddf5d0404964353a0b3d2821e514f6eeb3 /tnet_io/init.c | |
parent | 38962683e518dcbebc0cfa6c0c9c9616b25d5bd1 (diff) |
...
Diffstat (limited to 'tnet_io/init.c')
-rw-r--r-- | tnet_io/init.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tnet_io/init.c b/tnet_io/init.c index 3fa7cb8..16f6f37 100644 --- a/tnet_io/init.c +++ b/tnet_io/init.c @@ -40,10 +40,17 @@ static int feat_repo_next(lua_State *L) { return 0; } +static int feat_repo_is_end(lua_State *L) { + TNetFeatureRepo *repo = luaT_checkudata(L, 1, nerv_tnet_feat_repo_tname); + lua_pushboolean(L, tnet_feature_repo_is_end(repo)); + return 1; +} + static const luaL_Reg feat_repo_methods[] = { {"cur_utter", feat_repo_current_utterance}, {"cur_tag", feat_repo_current_tag}, {"next", feat_repo_next}, + {"is_end", feat_repo_is_end}, {NULL, NULL} }; |