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
|
2015-01-10 14:07:20 -08:00
|
|
|
open bool
|
2014-07-02 08:36:05 -07:00
|
|
|
|
2015-01-10 14:07:20 -08:00
|
|
|
protected definition char.is_inhabited [instance] : inhabited char :=
|
|
|
|
inhabited.mk (char.mk ff ff ff ff ff ff ff ff)
|
2014-07-04 14:25:44 -07:00
|
|
|
|
2015-01-10 14:07:20 -08:00
|
|
|
protected definition string.is_inhabited [instance] : inhabited string :=
|
|
|
|
inhabited.mk string.empty
|