This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using LiteDB; | |
using System.Collections.Generic; | |
using System.Text; | |
namespace LiteDBTesting | |
{ | |
class Company | |
{ | |
public int Id { get; set; } | |
public string CompanyName { get; set; } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local empty_func = function() end | |
--( Implement yourself: | |
local assert_table = empty_func | |
local is_number = function() return true end | |
local is_integer = function() return true end | |
--) | |
local get_max_idx = | |
function(t) | |
assert_table(t) |