2014-12-23 15:35:06 -05:00
|
|
|
/-
|
|
|
|
Copyright (c) 2014 Microsoft Corporation. All rights reserved.
|
|
|
|
Released under Apache 2.0 license as described in the file LICENSE.
|
|
|
|
|
|
|
|
Module: data.string
|
|
|
|
Author: Leonardo de Moura
|
|
|
|
-/
|
|
|
|
|
2014-11-30 20:34:12 -08:00
|
|
|
import data.bool
|
2014-09-03 16:00:38 -07:00
|
|
|
open bool inhabited
|
2014-07-02 08:36:05 -07:00
|
|
|
|
2014-09-04 22:31:52 -07:00
|
|
|
namespace char
|
2014-10-02 09:00:34 -07:00
|
|
|
protected definition is_inhabited [instance] : inhabited char :=
|
2014-09-04 22:31:52 -07:00
|
|
|
inhabited.mk (mk ff ff ff ff ff ff ff ff)
|
|
|
|
end char
|
2014-07-04 14:25:44 -07:00
|
|
|
|
2014-09-04 22:31:52 -07:00
|
|
|
namespace string
|
2014-10-02 09:00:34 -07:00
|
|
|
protected definition is_inhabited [instance] : inhabited string :=
|
2014-09-04 22:31:52 -07:00
|
|
|
inhabited.mk empty
|
|
|
|
end string
|